-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (36 loc) · 1.11 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
#!/usr/bin/env python
import setuptools
from pathlib import Path
setuptools.setup(
name='calcpy',
author='Idan Pazi',
author_email='[email protected]',
url='https://github.com/idanp/calcpy',
description='Terminal calculator and advanced math solver using Python, IPython and SymPy',
long_description=Path('README.md').read_text(),
long_description_content_type='text/markdown',
packages=['calcpy','previewer'],
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Framework :: IPython',
],
install_requires=[
'requests',
'ipython',
'pickleshare',
'matplotlib',
'sympy',
'dateparser',
'antlr4-python3-runtime==4.11', # todo: move to Lark when sympy supports it
],
use_scm_version={'fallback_version':'0.0'},
setup_requires=['setuptools_scm'],
license='MIT License',
zip_safe=False,
keywords=['calculator',],
entry_points = {
"console_scripts": ['calcpy = calcpy.__main__:main']
},
)