-
Notifications
You must be signed in to change notification settings - Fork 43
/
setup.py
126 lines (102 loc) Β· 3.33 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
import os
import re
import sys
from setuptools import setup, Command
__PATH__ = os.path.abspath(os.path.dirname(__file__))
install_requires = [
'six',
'numpy',
'biwrap==0.1.6',
'matplotlib>=2.0.0',
]
test_require = [
'pytest',
'pytest-pudb',
'imgcat',
'termcolor',
'scipy',
'seaborn>=0.8.0',
]
# temporarily redirect config directory to prevent matplotlib and skimage
# cause a SandboxViolationError on Travis CI environments.
os.environ["MPLCONFIGDIR"] = "."
def read_version():
# importing the package causes an ImportError :-)
with open(os.path.join(__PATH__, 'tfplot/__init__.py')) as f:
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]",
f.read(), re.M)
if version_match:
return version_match.group(1)
raise RuntimeError("Unable to find __version__ string")
__version__ = read_version()
readme = codecs.open('README.md', encoding='utf-8').read()
# brought from https://github.com/kennethreitz/setup.py
class DeployCommand(Command):
description = 'Build and deploy the package to PyPI.'
user_options = []
def initialize_options(self): pass
def finalize_options(self): pass
@staticmethod
def status(s):
print(s)
def run(self):
import twine # we require twine locally
assert 'dev' not in __version__, \
"Only non-devel versions are allowed. __version__ == {}".format(__version__)
with os.popen("git status --short") as fp:
git_status = fp.read().strip()
if git_status:
print("Error: git repository is not clean.\n")
os.system("git status --short")
sys.exit(1)
try:
from shutil import rmtree
self.status('Removing previous builds ...')
rmtree(os.path.join(__PATH__, 'dist'))
except OSError:
pass
self.status('Building Source and Wheel (universal) distribution ...')
os.system('{0} setup.py sdist'.format(sys.executable))
self.status('Uploading the package to PyPI via Twine ...')
ret = os.system('twine upload dist/*')
if ret != 0:
sys.exit(ret)
self.status('Creating git tags ...')
os.system('git tag v{0}'.format(read_version()))
os.system('git tag --list')
sys.exit()
setup(
name='tensorflow-plot',
version=__version__,
description='TensorFlow Plot',
long_description=readme,
long_description_content_type='text/markdown',
license='MIT License',
url='https://github.com/wookayin/tensorflow-plot',
author='Jongwook Choi',
author_email='[email protected]',
keywords='tensorflow matplotlib tensorboard plot tfplot',
packages=[
'tfplot',
],
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
],
install_requires=install_requires,
tests_require=test_require,
setup_requires=[
'pytest-runner',
],
cmdclass={
'deploy': DeployCommand,
},
include_package_data=True,
zip_safe=False,
)