-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (38 loc) · 1.34 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
37
38
39
40
import setuptools
with open("ReadMe.md", "r") as f:
long_description = f.read()
try:
from version import __version__
f = open('algebra_with_sympy/version.py','w')
f.write("__version__ = \"" + str(__version__) + "\"")
f.close()
except Exception as e:
raise RuntimeError('Unable to find __version__') from e
setuptools.setup(
name="Algebra_with_SymPy",
url = "https://gutow.github.io/Algebra_with_Sympy/",
version=__version__,
description="Equations that can be algebraicly manipulated.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Jonathan Gutow",
author_email="gutow@uwosh.edu",
keywords="symbolic algebra, computer algebra, CAS, calculations with "
"units, sympy",
license="GPL-3.0+",
packages=setuptools.find_packages(),
install_requires=[
# 'jupyter>=1.0.0',
# 'jupyterlab>=3.6',
'sympy-for-algebra>=1.12'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
]
)