Skip to content

Commit

Permalink
Added setup.py and AUTHORS.md
Browse files Browse the repository at this point in the history
  • Loading branch information
WiCK3D-POiSON committed Aug 9, 2018
1 parent 85e01e4 commit 0b78235
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@
.coverage
.pytest_cache
coverage.xml
htmlcov
local
visweb
dist/
build/
htmlcov/
local/
visma.egg-info/
__pycache__
4 changes: 4 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Developers

* Siddharth Kothiyal <sid.kothiyal27@gmail.com>
* Shantanu Mishra <8hantanu@gmail.com>
32 changes: 32 additions & 0 deletions setup.py
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="sid.kothiyal27@gmail.com, 8hantanu@gmail.com",
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'
)

0 comments on commit 0b78235

Please sign in to comment.