-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
25 lines (23 loc) · 927 Bytes
/
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
from setuptools import setup, find_packages
setup(
name="pycirculate",
version="0.1.1a1",
description="A Python wrapper for the Anova 2.",
long_description="A Python wrapper library for interacting with the Anova 2 over Bluetooth LE on Linux.",
url="https://github.com/erikcw/pycirculate",
author="Erik Wickstrom",
author_email="[email protected]",
license="MIT",
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: System :: Hardware',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Operating System :: POSIX :: Linux',
],
keywords='anova bluetooth bluepy sous vide',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
# bluepy isn't currently on pypi, uncomment as soon as it is available.
# install_requires=['bluepy'],
)