-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (26 loc) · 865 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
32
"""
@copyright: 2018 by Pauli Rikula <pauli.rikula@gmail.com>
@license: MIT <http://www.opensource.org/licenses/mit-license.php>
"""
from setuptools import setup
import domain_equations
README = "\n\n".join([
"# python-domain-equations",
domain_equations.PropertyGraph.__doc__])
with open('README.md', 'wt') as readme_file:
readme_file.write(README)
setup(
name='python-domain-equations',
version='0.2.0',
description='python-domain-equations',
long_description=README,
license="MIT",
author="Pauli Rikula",
url='https://github.com/kummahiih/python-domain-equations',
packages=['domain_equations'],
python_requires='~=3.6',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6'],
install_requires=['python-category-equations == 0.7.2']
)