-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (25 loc) · 968 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
from setuptools import setup, find_packages
from os.path import join, dirname
requirementstxt = join(dirname(__file__), "requirements.txt")
requirements = [ line.strip() for line in open(requirementstxt, "r") if line.strip() ]
setup(
name='AMRL',
version='0.0.0',
packages=find_packages(),
url="https://atom-manipulation-with-rl.readthedocs.io/en/latest/",
install_requires=requirements,
# in order to make the documentation compile on readthedocs
# we need to make pywin32 an 'extra' package since rtd runs on linux
# thus to pip install and include pywin32 in requirements
# we have to run ´pip install .[run]´
extras_require={
'run': [
'pywin32'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Operating System :: Microsoft :: Windows",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
])