forked from aerospaceresearch/visma
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (43 loc) · 1.58 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
41
42
43
44
45
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="VISualMAth",
description="visma - VISual MAth : A math equation solver and visualizer",
version="1.0.0.0",
author="Siddharth Kothiyal, Shantanu Mishra, Mayank Dhiman",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/aerospaceresearch/visma",
project_urls={
'Documentation': 'https://github.com/aerospaceresearch/visma/wiki',
'Source': 'https://github.com/aerospaceresearch/visma',
'Issues': 'https://github.com/aerospaceresearch/visma/issues',
'Chat': 'https://gitter.im/aerospaceresearch/visma'
},
packages=setuptools.find_packages(),
scripts=['bin/visma'],
classifiers=(
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Mathematics",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
),
python_requires='>=3',
install_requires=[
"PyQt5",
"matplotlib",
"numpy"
],
tests_require=[
"pytest",
"coverage"
]
)