-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 823 Bytes
/
setup.py
File metadata and controls
32 lines (29 loc) · 823 Bytes
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
# -*- coding: utf-8 -*-
# This file is part of atgmlogger-plugins
# https://github.com/DynamicGravitySystems/atgmlogger-plugins
# Licensed under the MIT License
# (c) Zachery Brady, Dynamic Gravity Systems, 2018-2019
from setuptools import setup
__version__ = '0.1.0b1'
requirements = [
# 'RPi.GPIO >= 0.6.3',
'requests'
]
setup(
name='atgmlogger-plugins',
version=__version__,
packages=['atgmlogger_plugins'],
url='',
license='',
author='Zachery Brady',
author_email='bradyzp@dynamicgravitysystems.com',
description='Plugins for ATGMlogger data recording application',
long_description='',
install_requires=requirements,
python_requires='>=3.5.*',
include_package_data=False,
zip_safe=True,
classifiers=[
'Development Status :: 3 - Alpha'
]
)