forked from mrJean1/PyGeodesy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
150 lines (125 loc) · 7.08 KB
/
setup.py
File metadata and controls
150 lines (125 loc) · 7.08 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
# -*- coding: utf-8 -*-
# The setuptools script to build, install and test a PyGeodesy distribution.
# Tested with 64-bit Python 2.7.13-18, 3.6.1-2, 3.7.0-6 and 3.8.0-5
# (using setuptools 28.8.0), but only on macOS 10.12.3-6 Sierra,
# 10.13.0-6 High Sierra, 10.15.5-7 Catalina and 11.0.1 (10.16) Big Sur
# python setup.py sdist --formats=gztar,bztar,zip # ztar,tar
# python setup.py bdist_wheel --universal # XXX
# python setup.py test
# python setup.py install
# <https://packaging.Python.org/key_projects/#setuptools>
# <https://packaging.Python.org/distributing>
# <https://docs.Python.org/2/distutils/sourcedist.html>
# <https://docs.Python.org/3.6/distutils/sourcedist.html>
# <https://setuptools.ReadTheDocs.io/en/latest/setuptools.html#developer-s-guide>
# <https://setuptools.ReadTheDocs.io/en/latest/setuptools.html#test-build-package-and-run-a-unittest-suite>
from setuptools import setup
__all__ = ()
__version__ = '21.09.19'
def _c2(*names):
return ' :: '.join(names)
def _long_description():
with open('README.rst', 'rb') as f:
t = f.read()
if isinstance(t, bytes):
t = t.decode('utf-8')
return t
def _version():
with open('pygeodesy/__init__.py') as f:
for t in f.readlines():
if t.startswith('__version__'):
v = t.split('=')[-1].strip().strip('\'"')
return '.'.join(map(str, map(int, v.split('.'))))
_KeyWords = ('AER', 'Albers', 'altitude', 'Andoyer', 'antipode', 'area', 'attitude',
'Authalic', 'auxiliary', 'azimuth', 'azimuthal', 'azimuth-elevation-range',
'bearing', 'bank', 'Barsky', 'Barth',
'cached', 'cartesian', 'Cassini', 'Cassini-Soldner',
'circle-intersections', 'circumcenter', 'circumcirle', 'circumradius',
'clip', 'Cohen', 'Cohen-Sutherland', 'conformal', 'conic', 'contact-triangle',
'cosines-law', 'coverage', 'curvature', 'cylindrical',
'datum', 'deprecation', 'deficit', 'development', 'discrete', 'distance', 'Douglas',
'earth', 'east-north-up', 'eccentricity', 'ECEF', 'elevation', 'ellipsoid', 'elliptic',
'ENU', 'EPSG', 'equal-area', 'equidistant', 'equirectangular', 'ETM', 'ETRF',
'Euclidean', 'ExactTM', 'excess',
'Farrell', 'Farrell-Barth', 'flattening', 'fmath', 'footprint', 'Forsythe', 'fov',
'fractional', 'Frechet', 'Fréchet', 'frustum',
'GARS', 'geocentric', 'GeodesicExact', 'geodesy', 'geodetic', 'GeodSolve', 'GeodTest',
'geographiclib', 'geohash', 'geoid', 'geoidHeight', 'GeoidHeights',
'georef', 'Girard', 'gnomonic',
'gons', 'grades', 'gradians',
'Hartzell', 'Hausdorff', 'Haversine', 'heading', 'height', 'Hodgman', 'horizon', 'Hubeny',
'incenter', 'incirle', 'inradius', 'IDW', 'intermediate', 'interpolate',
'intersect', 'intersection', 'intersection3d', 'intersections',
'Inverse-Distance-Weighting', 'Isometric', 'ITRF',
'Jekel', 'Karney', 'Krueger', 'Krüger',
'Lambert', 'latitude', 'law-of-cosines', 'least-squares', 'Lesh',
'L_Huilier', 'LHuilier', 'Liang', 'Liang-Barsky', 'linearize', 'Line-Of-Sight',
'LocalCartesian', 'local-tangent-plane', 'local-x-y-z', 'longitude', 'LOS',
'lstsq', 'LTP', 'lune',
'mean', 'memoize', 'Mercator', 'Meeus', 'MGRS',
'nearest', 'NED', 'Norrdine', 'north-east-down', 'numpy', 'n-vector', 'Nvector',
'oblate', 'orthographic', 'OSGR', 'overlap',
'parallel', 'parallel-of-latitude', 'Parametric', 'path-intersection',
'perimeter', 'Peucker', 'pitch', 'Point-Of-View', 'polar', 'POV', 'prolate', 'Pseudo-Mercator',
'PyGeodesy', 'PyInstaller', 'PyPy',
'radical', 'radii', 'radius', 'Ramer', 'Ramer-Douglas-Peucker', 'Rectifying',
'Reduced', 'Rey-Jer', 'Reumann', 'Reumann-Witkam', 'rhumb',
'scipy', 'semi-perimeter', 'simplify', 'Snyder', 'Soddy', 'Soddy-circles', 'Soldner',
'sphere', 'sphere-intersections', 'spherical-deficit', 'spherical-excess', 'spherical-triangle',
'stereographic', 'Sudano', 'surface-area', 'Sutherland', 'Sutherland-Hodgman',
'tangent-circles', 'Terrestrial-Reference-Frame', 'Thomas', 'tilt', 'TMcoords', 'TMExact',
'Transverse', 'TransverseMercatorExact', 'TRF', 'triangle', 'triangulate', 'trigonometry',
'trilaterate', 'trilaterate-2d', 'trilaterate-3d',
'unit', 'unroll', 'UPS', 'UTM', 'UTM/UPS',
'Veness', 'Vermeille', 'viewing-frustum', 'Vincenty', 'Visvalingam', 'Visvalingam-Whyatt',
'volume', ' volumetric',
'Web-Mercator', 'WGRS', 'WGS', 'Whyatt', 'Witkam',
'XYZ', 'yaw', 'You')
setup(name='PyGeodesy',
packages=['pygeodesy', 'pygeodesy.deprecated', 'pygeodesy.geodesicx'],
description='Pure Python geodesy tools',
version=_version(),
author='Jean M. Brouwers',
author_email='mrJean1@Gmail.com',
maintainer='Jean M. Brouwers',
maintainer_email='mrJean1@Gmail.com',
license='MIT',
keywords=' '.join(_KeyWords),
url='https://GitHub.com/mrJean1/PyGeodesy',
long_description=_long_description(),
package_data={'pygeodesy': ['LICENSE']},
# data_files=[('docs', ['docs/*.*']),
# ('images', ['test/testRoute.jpg']),
# ('test', ['test/test*.py']),
# ('testcoverage', ['testcoverage/*.*',
# 'testcoverage.pdf',
# 'testcoverage.rc']),
# ('testresults', ['testresults/*.txt'])],
# data_files fails somehow, see file MANIFEST.in
test_suite='test.TestSuite',
zip_safe=False,
# <https://PyPI.org/pypi?%3Aaction=list_classifiers>
classifiers=[_c2('Development Status', '5 - Production/Stable'),
_c2('Environment', 'Console'),
_c2('Intended Audience', 'Developers'),
_c2('License', 'OSI Approved', 'MIT License'),
_c2('Operating System', 'OS Independent'),
_c2('Programming Language', 'Python'),
# _c2('Programming Language', 'Python', '2.6'),
_c2('Programming Language', 'Python', '2.7'),
# _c2('Programming Language', 'Python', '3.5'),
_c2('Programming Language', 'Python', '3.6'),
_c2('Programming Language', 'Python', '3.7'),
_c2('Programming Language', 'Python', '3.8'),
_c2('Programming Language', 'Python', '3.9'),
_c2('Programming Language', 'Python', '3.10'),
_c2('Topic', 'Software Development'),
_c2('Topic', 'Scientific/Engineering', 'GIS'),
], # PYCHOK indent
# download_url='https://GitHub.com/mrJean1/PyGeodesy',
# entry_points={},
# include_package_data=False,
# install_requires=[],
# namespace_packages=[],
# py_modules=[],
) # PYCHOK indent