From 0b782358a6cc9c2b8b50379217645033f63adecf Mon Sep 17 00:00:00 2001 From: WiCK3D-POiSON Date: Fri, 10 Aug 2018 01:29:09 +0530 Subject: [PATCH] Added setup.py and AUTHORS.md --- .gitignore | 8 +++++--- AUTHORS.md | 4 ++++ setup.py | 32 ++++++++++++++++++++++++++++++++ 3 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 AUTHORS.md create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 5c17633..be2a236 100644 --- a/.gitignore +++ b/.gitignore @@ -4,7 +4,9 @@ .coverage .pytest_cache coverage.xml -htmlcov -local -visweb +dist/ +build/ +htmlcov/ +local/ +visma.egg-info/ __pycache__ diff --git a/AUTHORS.md b/AUTHORS.md new file mode 100644 index 0000000..cb7423d --- /dev/null +++ b/AUTHORS.md @@ -0,0 +1,4 @@ +# Developers + +* Siddharth Kothiyal +* Shantanu Mishra <8hantanu@gmail.com> diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e55e99b --- /dev/null +++ b/setup.py @@ -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' +)