-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
26 lines (23 loc) · 882 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
setup(
name='discoveryworld',
description="DiscoveryWorld - Making new discovery.",
author='Peter Jansen, Marc-Alexandre Côté',
version=open(os.path.join("discoveryworld", "version.py")).readlines()[0].split("=")[-1].strip("' \n"),
packages=find_packages(),
include_package_data=True,
url="https://github.com/allenai/discoveryworld",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
install_requires=open('requirements.txt').readlines(),
python_requires='>=3.8',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS :: MacOS X",
]
)