-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (23 loc) · 781 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (23 loc) · 781 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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="gabrielmtrettel@gmail.com",
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",
],
)