-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
30 lines (27 loc) · 1016 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
import os
from setuptools import setup, find_packages
try:
import pypandoc
long_description = pypandoc.convert('README.md', 'rst')
except:
long_description = ''
classifiers = ['Development Status :: 4 - Beta',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: Apache Software License',
'Intended Audience :: Developers',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development',
'Topic :: System :: Hardware']
setup(
name = 'Fabo_PCA9685',
version = '0.5',
author = 'FaBo',
author_email = '[email protected]',
description = "This is a library for the PCA9685.",
long_description=long_description,
url = 'https://github.com/FaBoPlatform/FaBoPWM-PCA9685-Python',
license = 'Apache License 2.0',
classifiers = classifiers,
packages = find_packages()
)