-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
73 lines (69 loc) · 2.5 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
66
67
68
69
70
71
72
73
import vulpes
from setuptools import setup, find_packages
VERSION = vulpes.__version__
DESCRIPTION = ("Test many classification, regression models and "
"clustering algorithms to see which one is most "
"suitable for your dataset.")
# LONG_DESCRIPTION: README + CHANGELOG
LONG_DESCRIPTION = ""
with open("README.md", "r+", encoding="UTF-8") as f:
LONG_DESCRIPTION += f.read()
LONG_DESCRIPTION += "\n\n"
with open("CHANGELOG.rst", "r+") as f:
LONG_DESCRIPTION += f.read()
# Install Requires
with open("requirements.txt", "r+") as f:
INSTALL_REQUIRES = [x.replace("\n", "") for x in f.readlines()]
URL = "https://vulpes.readthedocs.io/en/latest/"
DOWNLOAD_URL = "https://pypi.org/project/vulpes/"
PROJECT_URLS = {
"Bug Tracker": "https://github.com/AdrienC21/vulpes/issues",
"Documentation": URL,
"Source Code": "https://github.com/AdrienC21/vulpes",
}
AUTHOR = "Adrien Carrel"
AUTHOR_EMAIL = "[email protected]"
PYTHON_REQUIRES = ">=3.7"
CLASSIFIERS = [
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules'
]
KEYWORDS = ["vulpes", "python", "automl", "scikit-learn",
"machine-learning", "machine", "learning", "model",
"artificial", "intelligence", "clustering",
"dataset", "classification", "regression",
"hyperparameter-tuning"]
setup(
name="vulpes",
version=VERSION,
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=LONG_DESCRIPTION,
url=URL,
download_url=DOWNLOAD_URL,
project_urls=PROJECT_URLS,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
maintainer=AUTHOR,
maintainer_email=AUTHOR_EMAIL,
license="MIT",
classifiers=CLASSIFIERS,
keywords=KEYWORDS,
packages=find_packages(),
python_requires=PYTHON_REQUIRES,
install_requires=INSTALL_REQUIRES
)