-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
44 lines (40 loc) · 1.25 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
43
44
import setuptools
from setuptools import find_packages
def readme():
with open("README.md") as f:
return f.read()
setuptools.setup(
name="pipgeo",
version="0.0.6",
packages=find_packages(),
url="https://github.com/samapriya/pipgeo",
install_requires=[
"wheel>=0.38.4",
"requests>=2.28.1",
"beautifulsoup4>=4.11.1",
"setuptools>=41.2.0",
"natsort>=8.3.1"
],
license="Apache 2.0",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
classifiers=[
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
],
author="Samapriya Roy",
author_email="[email protected]",
description="CLI for Unofficial windows Geospatial library wheels",
entry_points={
"console_scripts": [
"pipgeo=pipgeo.pipgeo:main",
],
},
)