-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 854 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 854 Bytes
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
import setuptools
# if sys.version_info < (3, 7):
# sys.exit('Python>=3.7 is required by digirl.')
setuptools.setup(
name="digirl",
version='0.1.0',
url="https://github.com/DigiRL-agent/digirl",
author=("Hao Bai"),
description="Research code for digirl",
long_description=open("README.md", "r", encoding='utf-8').read(),
long_description_content_type="text/markdown",
keywords='digirl',
license='MIT',
packages=setuptools.find_packages(),
install_requires=open("requirements.txt", "r").read().split(),
include_package_data=True,
python_requires='>=3.9',
classifiers=[
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
],
)