forked from dionresearch/stemgraphic
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (33 loc) · 1.05 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
import io
import os
from setuptools import setup
from stemgraphic import __version__ as version
here = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = '\n' + f.read()
setup(name='stemgraphic',
version=version,
install_requires=[
"docopt",
"matplotlib",
"pandas",
# "python-levenshtein",
"seaborn"
],
include_package_data=True,
scripts=['bin/stem','bin/stem.bat'],
description='Graphic and text stem-and-leaf plots',
long_description=long_description,
long_description_content_type="text/markdown",
url='http://github.com/dionresearch/stemgraphic',
author='Francois Dion',
author_email='[email protected]',
license='MIT',
packages=['stemgraphic'],
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)