-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.05 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.05 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
from setuptools import find_packages, setup
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='jason-gnss',
version_cc='{version}',
author='Rokubun',
author_email='info@rokubun.cat',
description='Python bindings for Jason Cloud PPK Service: Rokubun GNSS processing engine in the cloud.',
long_description=long_description,
long_description_content_type='text/markdown',
license='http://opensource.org/licenses/MIT',
url="https://github.com/rokubun/jason-sdk-python",
setup_requires=['setuptools-git-version-cc'],
packages=["jason_gnss"],
include_package_data=True,
zip_safe=False,
install_requires=[
"docopt",
"requests",
"pytest",
"pytest-mocha",
"roktools",
"exifread"
],
entry_points={
'console_scripts': [
'jason = jason_gnss.main:main'
]
}
)