forked from jdlph/Path4GMNS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (22 loc) · 842 Bytes
/
setup.py
File metadata and controls
24 lines (22 loc) · 842 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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="path4gmns",
version="0.7.0a1",
author="Dr. Xuesong Zhou, Dr. Peiheng Li",
author_email="xzhou74@asu.edu, jdlph@hotmail.com",
description="An open-source, cross-platform, lightweight, and fast Python\
path engine for networks encoded in GMNS",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jdlph/PATH4GMNS",
packages=['path4gmns'],
package_dir={'path4gmns': 'path4gmns'},
package_data={'path4gmns': ['bin/*']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)