-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
37 lines (33 loc) · 1.16 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
from setuptools import setup
# Dynamically retrieve the information
MATHSOLVER = __import__('mathsolver')
VERSION = MATHSOLVER.__version__
AUTHOR = MATHSOLVER.__author__
AUTHOR_EMAIL = MATHSOLVER.__email__
URL = MATHSOLVER.__url__
with open("README.md", "r") as f:
long_description = f.read()
setup (
name='mathsolver',
version=VERSION,
url=URL,
author=AUTHOR,
author_email=AUTHOR_EMAIL,
description='Decode natural language to solve mathemathical calculations',
long_description=long_description,
long_description_content_type="text/markdown",
packages=["mathsolver"],
package_dir={'mathsolver':'mathsolver'},
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Text Processing :: General',
'Topic :: Text Processing :: Linguistic',
'Programming Language :: Python',
],
)