-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
73 lines (60 loc) · 1.81 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
from pathlib import Path
from setuptools import setup, find_packages
DIR = Path(__file__).parent
with (DIR/'README.rst').open('r') as f:
long_description = f.read()
setup(
name='snutree',
use_scm_version=True,
setup_requires=['setuptools_scm'],
description='Visualize big–little brother/sister relationships in Greek-letter organizations',
long_description=long_description,
url='https://github.com/lucas-flowers/snutree',
author='Lucas Flowers',
author_email='[email protected]',
license='GPLv3',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Other Audience',
'Topic :: Other/Nonlisted Topic',
'Topic :: Utilities',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python :: 3.5',
],
keywords='big little brother sister family tree',
packages=find_packages(exclude=['tests']),
install_requires=[
'Cerberus',
'networkx<2',
'pluginbase',
'PyYAML',
'voluptuous',
],
python_requires='>=3.5',
extras_require={
'dev' : [
'pytest', # tests
'docutils', # documentation
'pygments', # documentation
'faker', # examples
'twine', # distribution
],
'gui' : [
'gooey',
'psutil' # psutil appears to be an unlisted dependency of gooey
],
'sql' : ['mysqlclient'],
'ssh' : ['sshtunnel'],
'dot' : ['pydotplus']
},
package_data={
'' : ['*.txt'],
'snutree' : ['readers/*.py', 'schemas/*.py', 'writers/*.py'],
},
entry_points={
'console_scripts' : [
'snutree=snutree.cli:main',
'snutree-gui=snutree.gui:main',
]
}
)