-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathsetup.py
50 lines (45 loc) · 1.67 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
import os
import setuptools
with open("README.md", "r") as fh:
read_me_description = fh.read()
with open("requirements.txt") as reqs:
requirements = reqs.read().strip().split("\n")
non_python_files = [
"cython_decision_tree_functions.pyx",
"cython_tsne.pyx",
"cython_unsupervised_clustering.pyx",
"cython_naive_bayes.pyx",
"cython_ensemble_learning.pyx",
"cython_knn.pyx",
"cython_mixtures.pyx"
]
version_name = os.path.basename(os.environ["PYPI_VERSION"])
setuptools.setup(
name="sealion",
packages=setuptools.find_packages(),
package_data={"": non_python_files},
include_package_data=True,
version=version_name,
license="Apache",
description="SeaLion is a comprehensive machine learning and data science library for beginners and ml-engineers alike.",
author="Anish Lakkapragada",
author_email="[email protected]",
url="https://github.com/anish-lakkapragada/SeaLion",
keywords=["Machine Learning", "Data Science", "Python"],
install_requires=requirements,
long_description=read_me_description,
long_description_content_type="text/markdown",
python_requires=">=3",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
],
)