-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (23 loc) · 795 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
from setuptools import find_packages, setup
version = "0.6"
with open("./README.md") as f:
long_description = f.read()
requirements = ["numpy", "pandas", "geopandas", "shapely", "tqdm"]
setup(
name="maup",
version=version,
description="The geospatial toolkit for redistricting data",
author="Max Hully",
author_email="[email protected]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mggg/maup",
packages=find_packages(exclude=("tests",)),
install_requires=requirements,
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
)