forked from bjarnekvae/pymonarco-hat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (18 loc) · 748 Bytes
/
Copy pathsetup.py
File metadata and controls
20 lines (18 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from setuptools import setup
setup(name='pymonarco-hat',
version='0.1',
author='Bjarne Kvaestad',
author_email='bjarnekvae@gmail.com',
url='https://github.com/bjarnekvae/pymonarco-hat',
description='Python wrapper for Monarco HAT C driver',
long_description_content_type='text/markdown',
packages=['pymonarco_hat'],
classifiers=[
'Development Status :: 4 - beta',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
])