-
Notifications
You must be signed in to change notification settings - Fork 96
/
setup.py
27 lines (24 loc) · 829 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
27
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fh:
require = fh.readlines()
require= [x.strip() for x in require]
setuptools.setup(
name="pySankey",
version="1.0.0",
author="anazalea",
author_email="anneyagolob@gmail.com",
description="Make simple, pretty Sankey Diagrams",
long_description=long_description,
license='GNU General Public License v3.0',
long_description_content_type="text/markdown",
url="https://github.com/anazalea/pySankey",
packages=setuptools.find_packages(),
install_requires=require,
classifiers=(
"Programming Language :: Python :: 3",
'LICENSE :: OSI APPROVED :: GNU AFFERO GENERAL PUBLIC LICENSE V3',
"Operating System :: OS Independent",
),
)