-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
executable file
·60 lines (46 loc) · 1.88 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
# This file is part of GeodesicLinesToGIS.
# https://github.com/GeographicaGS/GeodesicLinesToGIS
# Licensed under the GPLv2 license:
# https://www.gnu.org/licenses/gpl-2.0.txt
# Copyright (c) 2015-2017, Cayetano Benavent <[email protected]>
from setuptools import setup, find_packages
# Get the long description from README file.
# Before upload a new version run rstgenerator.sh
# to update Readme reStructuredText file from
# original Readme markdown file.
with open('README.rst', 'r') as f:
long_description = f.read()
setup(
name='GeodesicLinesToGIS',
version='0.5.0',
description='Computes geodesic lines from start point to end point and stores them in a GIS file (Shapefile and GeoJSON). The problem of geodesic lines crossing antimeridian is solved.',
long_description=long_description,
author='Cayetano Benavent',
author_email='[email protected]',
# The project's main homepage.
url='http://github.com/GeographicaGS/GeodesicLinesToGIS',
# Licensed under the GPLv2 license:
# https://www.gnu.org/licenses/gpl-2.0.txt
license='GPLv2',
# According to: https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: GIS'
],
keywords='geodesic GIS antimeridian',
packages=find_packages(),
include_package_data=False,
install_requires=[
'pyproj>=1.9.3,<1.10',
'fiona>=1.5.0,<2.0',
'shapely>=1.5.0,<2.0'
]
)