Skip to content

Commit

Permalink
Adding setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
GabrielTrettel committed Oct 6, 2018
1 parent cd5eb98 commit e56c920
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import setuptools

# Just for keep in touch
# python3 setup.py sdist bdist_wheel
# twine upload dist/*

with open("READMEPYPI.md", "r") as fh:
long_description = fh.read()

version = "1.0.1"

setuptools.setup(
name="gdf_formatter",
version=version,
author="Gabriel Martins Trettel",
author_email="[email protected]",
description="GDF formatter for networks representation",
long_description=long_description,
url="https://github.com/GabrielTrettel/GDF_Formatter",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Operating System :: OS Independent",
"Natural Language :: English",
],
)

0 comments on commit e56c920

Please sign in to comment.