-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.27 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
#!/usr/bin/env python
__version__ = '0.0.5'
import sys
import os
from setuptools import setup # , find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='SetupVariableTracker',
version=__version__,
use_2to3=False,
author='Rene Vollmer',
author_email='admin@aypac.de',
maintainer='Rene Vollmer',
maintainer_email='admin@aypac.de',
description='Small library to track and log the declaration of new (setup) variables',
long_description=read('README.md'),
url='https://github.com/Aypac/SetupVariableTracker',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers'
'Topic :: Scientific/Engineering',
],
python_requires='>=3.6',
# license=read('LICENCE'),
# if we want to install without tests:
# packages=find_packages(exclude=["*.tests", "tests"]),
# packages=find_packages(),
packages=["SetupVariableTracker", ],
provides=["SetupVariableTracker"],
package_dir={"SetupVariableTracker": "SetupVariableTracker"},
install_requires=['tabulate', ],
#test_suite='SetupVariableTracker.tests',
zip_safe=False,
)