-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (35 loc) · 1.09 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
import setuptools
import os
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
if os.path.isfile("requirements.txt"):
with open("requirements.txt") as f:
install_requires = f.read().splitlines()
else:
install_requires = None
setuptools.setup(
name="NovelGridWorlds",
version="2.0.0",
author="Tufts University",
author_email="Shivam.Goel@tufts.edu",
description="NovelGridWorlds V2",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/waymao/NovelGridWorldsV2",
project_urls={
"Bug Tracker": "https://github.com/waymao/NovelGridWorldsV2/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
packages=setuptools.find_packages(
where='.',
include=['gym_novel_gridworlds2*'], # ["*"] by default
),
python_requires=">=3.6",
install_requires=install_requires,
package_data={
"gym_novel_gridworlds2.contrib.polycraft": ["img/*.png"],
}
)