-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
39 lines (35 loc) · 1.26 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
from setuptools import setup, find_packages
long_description = '''openaps predict plugin
==============================
This package is a vendor plugin for openaps that provides tools for predicting glucose trends.
'''
requires = ['openaps', 'python-dateutil', 'numpy', 'scipy', 'functools32']
__version__ = None
exec(open('openapscontrib/predict/version.py').read())
setup(
name='openapscontrib.predict',
version=__version__,
url='https://github.com/loudnate/openaps-predict',
download_url='http://pypi.python.org/pypi/openapscontrib.predict',
license='MIT',
author='Nathan Racklyeft',
author_email='[email protected]',
description='openaps predict plugin',
long_description=long_description,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Documentation',
'Topic :: Utilities',
],
platforms='any',
packages=find_packages(exclude=['tests']),
include_package_data=True,
install_requires=requires,
namespace_packages=['openapscontrib'],
test_suite='tests'
)