-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
38 lines (35 loc) · 1.13 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
import io
from setuptools import find_packages, setup
with io.open("README.md", encoding="utf-8") as f:
readme = f.read()
setup(
name="fairpredictor",
version="0.0.35",
url="https://github.com/kshitijrajsharma/fairpredictor",
author="Kshitij Raj Sharma",
author_email="skshitizraj@gmail.com",
description="A package for running predictions using fAIr",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(),
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
install_requires=[
"requests<=2.31.0",
"Pillow<=9.0.1",
"rtree>=1.0.0,<=1.1.0",
"tqdm>=4.0.0,<=4.62.3",
"geopandas<=0.14.5",
"shapely>=1.0.0,<=2.0.2",
"rasterio>=1.0.0,<=1.3.8",
"orthogonalizer<=0.0.4",
],
)