-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (24 loc) · 784 Bytes
/
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
from setuptools import setup, find_packages
with open('LICENSE') as f:
licence = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='parliament_members_sankey',
version='0.3',
py_modules=['main'],
# packages=['crawler', 'visualizer', 'configuration', 'pandas_manager'],
packages=find_packages('src'),
package_dir={'': 'src'},
url='https://github.com/drkostas/Parliament-Members-Flow-Viz',
license=licence,
author='drkostas',
author_email='georgiou.kostas94@gmail.com',
description='Package for creating sankey diagrams for political',
install_requires=requirements,
entry_points={
'console_scripts': [
'parliament_members_sankey=main:main'
]
},
)