-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 1012 Bytes
/
setup.py
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
28
29
30
31
32
33
import re
from setuptools import setup
from io import open
(__version__,) = re.findall('__version__ = "(.*)"', open("wayfarer/__init__.py").read())
def readme():
with open("README.rst", "r", encoding="utf-8") as f:
return f.read()
setup(
name="wayfarer",
version=__version__,
description="A library to add spatial functions to networkx",
long_description=readme(),
classifiers=[
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10", # minimum required due to use of annotations
"Intended Audience :: Developers",
],
url="https://github.com/compassinformatics/wayfarer/",
author="Seth Girvin",
author_email="[email protected]",
license="MIT",
package_data={"wayfarer": ["py.typed"]},
packages=["wayfarer"],
install_requires=["networkx>=3.0", "geojson"],
zip_safe=False,
)