This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
65 lines (58 loc) · 1.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
"""
Run setup
"""
from setuptools import setup, find_packages
def parse_description(description):
"""
Strip figures and alt text from description
"""
return "\n".join(
[
a
for a in description.split("\n")
if ("figure::" not in a) and (":alt:" not in a)
]
)
DISTNAME = "pure-predict"
VERSION = "0.0.4"
DESCRIPTION = "Machine learning prediction in pure Python"
with open("README.rst") as f:
LONG_DESCRIPTION = parse_description(f.read())
CLASSIFIERS = [
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Topic :: Scientific/Engineering",
]
AUTHOR = "Ibotta Inc."
AUTHOR_EMAIL = "[email protected]"
LICENSE = "Apache 2.0"
DOWNLOAD_URL = "https://pypi.org/project/pure-predict/#files"
PROJECT_URLS = {"Source Code": "https://github.com/Ibotta/pure-predict"}
MIN_PYTHON_VERSION = "3.6"
tests_require = [
"xgboost>=0.82",
"scikit-learn>=0.20,<0.24",
"pandas",
"numpy>=1.16.5",
"fasttext<=0.9.1",
"pytest",
]
setup(
name=DISTNAME,
version=VERSION,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
classifiers=CLASSIFIERS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
license=LICENSE,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
packages=find_packages(),
python_requires=">={0}".format(MIN_PYTHON_VERSION),
extras_require=dict(tests=tests_require),
)