-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
48 lines (42 loc) · 1.32 KB
/
Copy pathsetup.py
File metadata and controls
48 lines (42 loc) · 1.32 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
#!/usr/bin/env python
"""
Mapilio Calculation
"""
from __future__ import (absolute_import, division, print_function)
import sys
from setuptools import find_packages, setup
if sys.version_info < (3, 5):
raise RuntimeError(
"Mapilio Calculation supports Python 3.6 and above. "
)
# This import must be below the above `sys.version_info` check,
# because the code being imported here is not compatible with the older
# versions of Python.
from increment_version import __version__
from calculation.version import __name__
INSTALL_REQUIRES = [
'numpy',
'requests',
'trianglesolver',
'ExifRead',
'addict'
]
setup(
name=__name__,
version=__version__,
description='Mapilio Calculation Library',
url='https://github.com/mapilio/calculation.git',
author='Mapilio - Ozcan Durak & MCV',
author_email='ozcan@visiosoft.com.tr',
long_description="""# Mapilio Calculation Library""",
long_description_content_type='text/markdown',
license='MIT',
packages=find_packages(),
install_requires=INSTALL_REQUIRES,
python_requires=">=3.6, <4",
project_urls={ # Optional
'Bug Reports': 'https://github.com/mapilio/calculation/issues',
'Say Thanks!': 'https://mapilio.com/#contact',
'Source': 'https://github.com/mapilio/calculation/',
},
)