-
Notifications
You must be signed in to change notification settings - Fork 80
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
WiCK3D-POiSON
committed
Aug 9, 2018
1 parent
85e01e4
commit 0b78235
Showing
3 changed files
with
41 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Developers | ||
|
||
* Siddharth Kothiyal <[email protected]> | ||
* Shantanu Mishra <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import setuptools | ||
|
||
with open("README.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="visma", | ||
description="VISual MAth - A math equation solver and visualizer", | ||
version="0.2.0", | ||
author="Siddharth Kothiyal, Shantanu Mishra", | ||
author_email="[email protected], [email protected]", | ||
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' | ||
}, | ||
license="GPLv3", | ||
packages=setuptools.find_packages(), | ||
classifiers=( | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
"Topic :: Scientific/Engineering", | ||
"Topic :: Scientific/Engineering :: Mathematics", | ||
"Topic :: Scientific/Engineering :: Visualization" | ||
), | ||
python_requires='>=3' | ||
) |