-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (38 loc) · 1.17 KB
/
setup.py
File metadata and controls
42 lines (38 loc) · 1.17 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# coding: utf-8
from __future__ import unicode_literals
from setuptools import setup, find_packages
version = '0.4.0'
setup(
name='pykush',
version=version,
description='Yepkit YKUSH Python API and command line tool',
long_description=open('README.md').read(),
author='ckuesters',
author_email='ckuesters@yepkit.com',
license='MIT',
keywords=['yepkit', 'ykush', 'pykush'],
url='https://github.com/yepkit/pykush',
packages=find_packages(),
install_requires=[
'hidapi>=0.7.99',
],
entry_points={
'console_scripts': [
'pykush=pykush.pykush:main'
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: Developers",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Utilities",
"Topic :: System :: Hardware :: Hardware Drivers",
],
)