-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
30 lines (23 loc) · 955 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
26
27
28
29
30
from setuptools import setup, find_packages
with open('README.rst', 'r') as f:
README = f.read()
setup(name='apigpio',
version='0.0.2',
description='asyncio-based python client for pigpiod',
long_description=README,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.4",
"Topic :: System :: Hardware :: Hardware Drivers",
"Topic :: Software Development :: Libraries :: Python Modules",
],
author='Pierre Rust',
author_email='[email protected]',
url='https://github.com/PierreRust/apigpio',
download_url = 'https://github.com/PierreRust/apigpio/archive/0.0.2.tar.gz',
keywords=['gpio', 'pigpio', 'asyncio', 'raspberry'],
packages=find_packages()
)