-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
42 lines (39 loc) · 1.26 KB
/
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
34
35
36
37
38
39
40
41
42
import os
import pathlib
from setuptools import setup
# The directory containing this file
current_dir = pathlib.Path(__file__).parent
# The text of the README file
README = (current_dir / "README.md").read_text()
setup(
name = "stplanpy",
version = "0.3.0",
author = "Arnout Boelens",
author_email = "[email protected]",
packages = ["stplanpy"],
install_requires=[
"numpy",
"shapely<=2.0",
"pandas",
"pandas-flavor",
"geopandas>=0.9",
],
description = (
"The Sustainable Transportation Planner for Python is a library "
"focused on active transportation and transit. It was inspired "
"by the stplanr library for R"
),
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/pctBayArea/stplanpy",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
],
)