-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (32 loc) · 1.21 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
from setuptools import setup
with open('README.md', 'r') as readme:
readme = "".join(readme.readlines())
with open('requirements.in', 'r') as requirements:
dependencies = [dependency.split('#')[0].replace('\n', '').replace(' ', '')
for dependency in requirements.readlines() if
dependency[0] != '#']
setup(
name='blackvue_gps',
version='2018.7.16',
url='https://github.com/bartbroere/blackvue-gps/',
author='Bart Broere',
author_email='[email protected]',
license='MIT License',
description="Parse GPS records created by BlackVue Dashcams.",
keywords='blackvue gps dashcam nmea parse parser',
long_description=readme,
py_modules=['blackvue_gps', 'blackclue'],
install_requires=dependencies,
entry_points = {
'console_scripts': ['blackvue_gps=blackvue_gps:main'],
},
classifiers=(
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
)
)