-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (46 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/python
from setuptools import setup, find_packages
import oacids
def readme():
with open("README.md") as f:
return f.read()
setup(name='oacids',
version='0.0.0', # http://semver.org/
description='open aps continuous I D system.',
long_description=readme(),
author="Ben West",
author_email="[email protected]",
# url="https://github.com/openaps/oacids",
url="https://openaps.org/",
packages=find_packages( ),
include_package_data = True,
install_requires = [
'recurrent',
'openaps > 0.0.9',
],
dependency_links = [
],
scripts = [
'bin/openaps-dbus',
'bin/openaps-schedule',
'bin/openaps-trigger',
],
entry_points = {
'openaps.importable': [
'schedules = oacids.schedules',
# 'aliases = oacids.schedules',
'triggers = oacids.triggers',
],
},
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries'
],
zip_safe=False,
)
#####
# EOF