-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.27 KB
/
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
32
33
34
35
36
37
38
import pathlib,setuptools,os
#python -m pip install --upgrade pip setuptools wheel
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
long_description = (HERE / "README.md").read_text()
#with open("README.md", "r") as fh:
# long_description = fh.read()
setuptools.setup(
name="KeynoRobot",
version='0.5.%s' % os.environ.get('TRAVIS_BUILD_NUMBER', 0),
author="Mehrdad Keyno",
author_email="[email protected]",
description="This is a repository of code, project information and hardware-software design for AI Cognitive maps UAV drone",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mkeyno/KeynoRobot",
packages=setuptools.find_packages(exclude=("tests",)),
install_requires=[
'numpy',
'opencv-python',
'logging','os','asyncio','tensorflow','aiojobs','aiofiles',
'json','dotenv','aiohttp','aiohttp_session' ,'serial_asyncio',
],
# entry_points={
# "console_scripts": [
# "realpython=reader.__main__:main",
# ]
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
)