-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·55 lines (40 loc) · 1.55 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
#!/usr/bin/env python
#
# created by kpe on 08.04.2019 at 9:33 PM
#
from setuptools import setup, find_packages, convert_path
def _version():
ns = {}
with open(convert_path("params_flow/version.py"), "r") as fh:
exec(fh.read(), ns)
return ns['__version__']
__version__ = _version()
with open("README.rst", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as reader:
install_requires = list(map(lambda x: x.strip(), reader.readlines()))
setup(name="params-flow",
version=__version__,
url="https://github.com/kpe/params-flow/",
description="Tensorflow Keras utilities for reducing boilerplate code.",
long_description=long_description,
long_description_content_type="text/x-rst",
keywords="tensorflow keras",
license="MIT",
author="kpe",
author_email="kpe.git@gmailbox.org",
packages=find_packages(exclude=["tests"]),
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
python_requires=">=3.5",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy"])