-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
27 lines (25 loc) · 921 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
import sys
import setuptools
# if sys.version_info < (3, 7):
# sys.exit('Python>=3.7 is required by archer.')
setuptools.setup(
name="archer",
version='0.1.0',
url="https://github.com/YifeiZhou02/ArCHer",
author=("Yifei Zhou"),
description="Research code for ArCHer (Actor Critic Framework with Hierarchical Structures)",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='ArCHer',
license='MIT',
packages=setuptools.find_packages(),
install_requires=open("requirements.txt", "r").read().split(),
include_package_data=True,
python_requires='>=3.7',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)