-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (51 loc) · 1.71 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
# -*- coding: utf-8 -*-
# setup.py for atgmlogger
#
# (C) 2016-2020 Zachery P. Brady
# (C) 2016-2020 Dynamic Gravity Systems
from setuptools import setup
from atgmlogger import __version__, __description__
requirements = [
'setuptools >= 38.5.1',
'pyserial == 3.4',
'RPi.GPIO == 0.7.0'
]
setup(
name='atgmlogger',
version=__version__,
packages=['atgmlogger', 'atgmlogger.plugins', 'atgmlogger.tests',
'atgmlogger.tests.plugins'],
url='https://github.com/bradyzp/atgmlogger',
author='Zachery Brady',
author_email='[email protected]',
description="Serial Data Recording Utility for Linux/RaspberryPi devices.",
long_description=__description__,
install_requires=requirements,
python_requires='>=3.5.*',
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': [
'atgmlogger = atgmlogger.__main__:entry_point'
]
},
setup_requires=['pytest-runner'],
tests_require=['pytest'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'License :: OSI Approved :: MIT License',
'Intended Audience :: Science/Research',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: GIS',
'Topic :: Terminals :: Serial',
'Topic :: Utilities'
]
)