forked from cariad/tupper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 862 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
28
29
30
31
"""
"tupper" package setup.
"""
from setuptools import setup
with open('README.md', 'r') as stream:
LONG_DESCRIPTION = stream.read()
setup(
author='Cariad Eccleston',
author_email='[email protected]',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
],
description='Calculates plots for Tupper\'s Self-Referential Formula.',
name='tupper',
license='MIT',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=[
'tupper'
],
url='https://github.com/cariad/py-tupper',
version='0.10.1')