-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
28 lines (23 loc) · 771 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
"""
@copyright: 2010 - 2019 by Pauli Rikula <pauli.rikula@gmail.com>
@license: MIT <http://www.opensource.org/licenses/mit-license.php>
"""
from setuptools import setup
import category_equations
README = category_equations.from_operator.__doc__
with open('README.md', 'wt') as readme_file:
readme_file.write(README)
setup(
name='python-category-equations',
version='0.7.3',
description='python-category-equations',
long_description=README,
license="MIT",
author="Pauli Rikula",
url='https://github.com/kummahiih/python-category-equations',
packages=['category_equations'],
python_requires='~=3.6',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6']
)