-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 838 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import find_packages, setup
#run:
#python3 setup.py sdist bdist_wheel
with open('requirements.txt') as f:
requirements = f.read().splitlines()
with open('README.md') as f:
readme = f.read()
setup(
name='openral_mongodb_py',
version='0.1.1',
description = 'MongoDB Implementation of a RalRepository for openRAL.',
long_description=readme,
long_description_content_type='text/markdown',
author='Permarobotics GmbH',
author_email='[email protected]',
url='https://github.com/AndyPermaRobotics/openral-mongodb-py',
packages=find_packages(include=['openral_mongodb_py', 'openral_mongodb_py.*']),
license='MIT',
install_requires=requirements,
keywords=[
'openRAL',
'regenerative agriculture',
'agriculture',
'mongodb',
],
)