-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
30 lines (28 loc) · 983 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
import os
long_description = open(os.path.join(os.path.dirname(__file__), 'README.rst')
).read()
setup(
name='lcd2usb',
description=long_description.split('\n')[0],
long_description='.. contents::\n\n' + long_description,
keywords='usb lcd lcd2usb',
version='1.3',
author='Xie Yanbo',
author_email='[email protected]',
url='http://github.com/xyb/lib2usb',
license='New BSD',
platforms=['any'],
py_modules=['lcd2usb'],
install_requires=['libusb1'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Hardware :: Hardware Drivers',
],
)