-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
33 lines (31 loc) · 1.19 KB
/
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
31
32
33
from setuptools import setup, find_packages
setup(
name = 'mooltipy',
version = '1.0.0',
description = 'Mooltipass command line utilities and development library.',
url = 'https://github.com/osquat/mooltipy',
author = 'Vic Simeone',
author_email = '[email protected]',
license = 'GPLv3+',
keywords = ['mooltipass'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
],
packages = find_packages(),
install_requires = ['pyusb>=1.0.0b2'],
entry_points = {
'console_scripts': [
'mooltipy = mooltipy.utilities.mooltipy_wrapper:main',
'mpdata = mooltipy.utilities.mpdata:main',
'mplogin = mooltipy.utilities.mplogin:main',
'mpfavorites = mooltipy.utilities.mpfavorites:main',
'mpparams = mooltipy.utilities.mpparams:main',
],
}
)