-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
43 lines (38 loc) · 1.45 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
import setuptools
import sizif
# ignore files https://stackoverflow.com/questions/26911045/is-it-possible-to-exclude-certain-files-when-building-a-wheel-with-setup-py
REQUIRED_PACKAGES = [
'numpy >= 1.12',
'Keras >= 2.2'
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="sizif",
version=sizif.VERSION,
author="Michael Butlitsky",
author_email="[email protected]",
description="Deep learning Keras models lifecycle management backup/restore nano framework",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aristofun/sizif",
packages=setuptools.find_packages(),
classifiers=(
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
"Environment :: Console",
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
include_package_data=True,
zip_safe=False,
install_requires=REQUIRED_PACKAGES,
# entry_points={'console_scripts': CONSOLE_SCRIPTS}
)