-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
44 lines (36 loc) · 1.12 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
# -*- coding: utf-8 -*-
from src import tfstate
from setuptools import setup, find_packages
# Package dependencies
install_requires = [
]
# Trove classifiers
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
]
setup(
# Package info
name=tfstate.name,
version=tfstate.version,
description=tfstate.description,
author=tfstate.author,
url='',
long_description=tfstate.description,
# Package classifiers
classifiers=classifiers,
# Package structure
packages=find_packages('src', exclude=['ez_setup', '*.tests', '*.tests.*', 'tests.*', 'tests']),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
# Dependencies
install_requires=install_requires,
)