-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (51 loc) · 1.42 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
61
from setuptools import setup
with open('README.md', 'rb') as f:
longdesc = f.read().decode().strip()
setup(
setup_requires=[
'setuptools_scm',
],
use_scm_version={
'write_to': 'gpstime/__version__.py',
},
name='p1-gpstime',
description='GPS-aware datetime module',
long_description=longdesc,
long_description_content_type='text/markdown',
author='Jameson Graef Rollins',
author_email='[email protected]',
url='https://git.ligo.org/cds/gpstime',
license='GPL-3.0-or-later',
classifiers=[
'Development Status :: 5 - Production/Stable',
('License :: OSI Approved :: '
'GNU General Public License v3 or later (GPLv3+)'),
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
packages=[
'gpstime',
],
tests_require=[
'python-dateutil',
],
test_suite='gpstime.test',
install_requires=[
'appdirs',
'python-dateutil',
'requests',
],
# entry_points={
# 'console_scripts': [
# 'gpstime = gpstime.__main__:main',
# ],
# },
scripts=[
'bin/gpstime',
],
)