forked from aiqc/AIQC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 2 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="aiqc",
version="1.0.70",
author="Layne Sadler",
author_email="[email protected]",
description="End-to-end machine learning on your desktop or server.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://aiqc.readthedocs.io/",
packages=setuptools.find_packages(),
include_package_data=True,# Triggers `MANIFEST.in` file.
python_requires='>=3.5, <=3.8.7', # (tf req Py3.5-3.8)
license='AGPLv3',
# Version operands https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers
# According to Python slack wizards, despite wheel-related warnings when installing aiqc on
# a fresh python env, I don't need to require users to install 'wheel'.
install_requires=[
# Mandatory versions:
'tensorflow>=2.4.1'#tensorflow.org/install/pip
, 'keras>=2.4.3'#https://docs.floydhub.com/guides/environments/
, 'h5py~=2.10.0'#(tf2.4.1 req h5py~=2.10.0)
# Frameworks:
, 'peewee>=3.14.0'#Just pip show'ed where this was at during aiqc 1.0.0
, 'scikit-learn>=0.23.2'#Just pip show'ed where this was at during aiqc 1.0.0
, 'pandas'# Heavily depended on so other packages will install it.
, 'pillow'
, 'numpy'# Heavily depended on so other packages will install it.
, 'pyarrow>=2.0.0'
, 'plotly>=4.14.3'
# Programmatic:
, 'appdirs'
, 'natsort'
, 'tqdm'
, 'validators'
],
classifiers=[
"Programming Language :: Python :: 3",
"Natural Language :: English",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Development Status :: 1 - Planning",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
)