Skip to content

Commit

Permalink
Create setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mb7419 authored Apr 9, 2020
1 parent 2843172 commit 18f0a07
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#https://towardsdatascience.com/build-your-first-open-source-python-project-53471c9942a7
from setuptools import setup, find_packages

with open("README.md", "r") as readme_file:
readme = readme_file.read()

setup(
name="egm",
version="0.0.1",
author="Mohit Bhatnagar",
author_email="mohit@uplytics.com",
description="A python package for plotting Evidence Gap Maps using Plotly",
long_description=readme,
long_description_content_type="text/markdown",
url="https://https://github.com/mb7419/egm/",
packages=find_packages(),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)

0 comments on commit 18f0a07

Please sign in to comment.