-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
37 lines (34 loc) · 1.06 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
from setuptools import setup
import webproj
with open("README.md") as f:
readme = f.read()
setup(
name="webproj",
version=webproj.__version__,
description="REST API for PROJ Transformations",
license="MIT",
keywords="PROJ transformations geodesy projections",
author="Kristian Evers",
author_email="[email protected]",
url="https://github.com/SDFIdk/WEBPROJ",
long_description=readme,
packages=["webproj", "tests", "app"],
install_requires=["fastapi", "pyproj"],
test_suite="tests/test_api.py",
data_files=["webproj/data.json"],
include_package_data=True,
zip_safe=False,
entry_points="""
[console_scripts]
webproj=app.main:run
""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: GIS",
],
)