-
Notifications
You must be signed in to change notification settings - Fork 74
/
setup.py
42 lines (38 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
from setuptools import find_packages, setup
import versioneer
with open("./README.rst") as f:
long_description = f.read()
requirements = [
# package requirements go here
"pandas",
"scipy",
"networkx",
"matplotlib",
]
setup(
name="gerrychain",
description="Use Markov chain Monte Carlo to analyze districting plans and gerrymanders",
author="Metric Geometry and Gerrymandering Group",
author_email="[email protected]",
maintainer="Metric Geometry and Gerrymandering Group",
maintainer_email="[email protected]",
long_description=long_description,
long_description_content_type="text/x-rst",
url="https://github.com/mggg/GerryChain",
packages=find_packages(exclude=("tests",)),
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
install_requires=requirements,
keywords="GerryChain",
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
],
extras_require={
'geo': ["shapely>=2.0.1", "geopandas>=0.12.2"]
}
)