-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
60 lines (48 loc) · 1.56 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
from setuptools import setup, find_packages
with open('README.md') as readme_file:
long_description = readme_file.read()
setup(name='GPSconverter',
version='0.0.18',
description='Python package for manipulating gps data and easily convert them to other different formats.',
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/carmelosammarco/GPSconverter",
author='Carmelo Sammarco',
author_email='sammarcocarmelo@gmail.com',
license='gpl-3.0',
zip_safe=False,
platforms='OS Independent',
python_requires='~=3.6',
include_package_data=True,
package_data={
'GPSconverter': ['DATA/LOGO.gif']
},
install_requires=[
'gpxpy >= 1.4.0',
'numpy >= 1.18.1',
'pandas >= 1.0.3',
'scipy >= 1.4.1',
'folium >= 0.12.1',
'Flask >= 2.0.1',
'Pillow >= 8.2.0',
'simplekml >= 1.3.5',
'tkmacosx >= 1.0.3',
'html2image >= 1.1.3',
#'fiona>= 1.8.4',
#'geopandas >= 0.9.0',
'pyshp >= 2.1.3',
'matplotlib >= 3.4.2',
'pygmt',
'pyogrio'
],
packages=find_packages(),
entry_points={
'console_scripts':['GPSconverter = GPSconverter.__main__:main']
},
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Programming Language :: Python :: 3.8',
],
)