-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
119 lines (98 loc) · 3.82 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
#!/usr/bin/env python
import os
import sys
#from distutils.core import setup
from setuptools import setup, find_packages
import unittest
name = "autobasedoc"
##action should be one of update/minor/major
#possible_action = ["major", "minor", "update", "test", "sdist", "install"]
#update_action = sys.argv[-1]
#
#print(update_action, sys.argv)
#
#if update_action in possible_action:
# action = update_action
#else:
# action = "update"
def my_test_suite():
test_loader = unittest.TestLoader()
test_suite = test_loader.discover(os.path.join(name,'tests'), pattern='test*.py')
return test_suite
rootdir = os.path.abspath(os.path.dirname(__file__))
# Restructured text project description read from file
long_description = """Automating documentation workflow using matplotlib figures and reportlab."""
# Python 2.7 or later needed
if sys.version_info < (3, 5, 0, 'final', 0):
raise SystemExit('Python 3.5 or later is required!')
# Build a list of all project modules
packages = []
for dirname, dirnames, filenames in os.walk(name):
if '__init__.py' in filenames:
packages.append(dirname.replace('/', '.'))
package_dir = {name: name}
# Data files used e.g. in tests
package_data = {} #{name: [os.path.join(name, 'tests', 'prt.txt')]}
# The current version number - MSI accepts only version X.X.X
exec(open(os.path.join(name, 'version.py')).read())
#update the version count according to action
#if action not in possible_action:
# raise SystemExit("action should be one of minor/major/update/test")
#if not action == "sdist" and not action == "test":
# version_i = [int(x) for x in version.split(".")]
# version_i[possible_action.index(action)] += 1
# if version_i[2] > 9:
# version_i[2] = 0
# version_i[possible_action.index("minor")] += 1
# version = ".".join([str(x) for x in version_i])
#
# with open(os.path.join(name, 'version.py'), 'w') as f:
# f.write("version='"+version+"'")
print("Version:", version)
# Scripts
scripts = []
for dirname, dirnames, filenames in os.walk('scripts'):
for filename in filenames:
if not filename.endswith('.bat'):
scripts.append(os.path.join(dirname, filename))
# Provide bat executables in the tarball (always for Win)
if 'sdist' in sys.argv or os.name in ['ce', 'nt']:
for s in scripts[:]:
scripts.append(s + '.bat')
# Data_files (e.g. doc) needs (directory, files-in-this-directory) tuples
data_files = []
for dirname, dirnames, filenames in os.walk('doc'):
fileslist = []
for filename in filenames:
fullname = os.path.join(dirname, filename)
fileslist.append(fullname)
data_files.append(('share/' + name + '/' + dirname, fileslist))
setup(name=name,
version=version, # PEP440
description='autobasedoc - convenience reportlab tool',
long_description=long_description,
url='https://github.com/NuCOS/autobasedoc',
download_url = 'https://github.com/NuCOS/autobasedoc/tarball/'+version,
author='Oliver Braun, Johannes Eckstein',
author_email='johannes.eckstein@nucos.de',
license='BSD',
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 1 - Planning',
'Environment :: Console',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
],
keywords='reporting',
packages=packages,
package_dir=package_dir,
package_data=package_data,
scripts=scripts,
data_files=data_files,
#test_suite='setup.my_test_suite',
install_requires=['reportlab','pdfrw','svglib', 'cycler', 'matplotlib','img2pdf'],
include_package_data=True,
)