-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
26 lines (23 loc) · 913 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
'''Install the braillegraph package.'''
from setuptools import setup
setup(name='braillegraph',
version='0.10',
description=('A library for creating graphs using Unicode braille '
'characters'),
long_description=open('README.rst', 'r').read(),
url='http://github.com/chrisbouchard/braillegraph',
author='Chris Bouchard',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Utilities'
],
packages=['braillegraph'],
test_suite='braillegraph.tests.test_braillegraph',
zip_safe=False)