-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
cd5eb98
commit e56c920
Showing
1 changed file
with
27 additions
and
0 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
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", | ||
], | ||
) |