-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
setup.py
43 lines (38 loc) · 1.35 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
38
39
40
41
42
43
# flake8: noqa
from codecs import open
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
with open("requirements.txt") as requirements:
REQUIREMENTS = [r.strip() for r in requirements if r != "\n"]
PROJECT_URLS = {
"Bug Tracker": "https://github.com/ddbourgin/numpy-ml/issues",
"Documentation": "https://numpy-ml.readthedocs.io/en/latest/",
"Source": "https://github.com/ddbourgin/numpy-ml",
}
setup(
name="numpy-ml",
version="0.1.2",
author="David Bourgin",
author_email="ddbourgin@gmail.com",
project_urls=PROJECT_URLS,
url="https://github.com/ddbourgin/numpy-ml",
description="Machine learning in NumPy",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
install_requires=REQUIREMENTS,
packages=find_packages(),
license="GPLv3+",
include_package_data=True,
python_requires=">=3.5",
extras_require={"rl": ["gym", "matplotlib"]},
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
],
)