|
1 |
| -from distutils.core import setup |
| 1 | +from setuptools import setup, find_packages |
2 | 2 | import inspect
|
3 | 3 | import os, errno
|
4 | 4 |
|
|
39 | 39 | name='vncpasswd.py',
|
40 | 40 | version=version,
|
41 | 41 | packages=['d3des','WindowsRegistry',],
|
| 42 | + scripts=['vncpasswd.py', 'pass2reg.cmd'], |
42 | 43 | license='License :: OSI Approved :: MIT License',
|
| 44 | + description='A Python implementation of vncpasswd, w/decryption abilities & extra features ;-)', |
43 | 45 | long_description=readme,
|
| 46 | + platforms=['any'], |
44 | 47 | author='James Cuzella',
|
45 | 48 |
|
46 |
| - url='https://github.com/trinitronx/vncpasswd.py' |
| 49 | + url='https://github.com/trinitronx/vncpasswd.py', |
| 50 | + classifiers=[ |
| 51 | + "Programming Language :: Python :: 2 :: Only", |
| 52 | + "Programming Language :: Python :: 2.7", |
| 53 | + "Programming Language :: Python :: Implementation :: CPython", |
| 54 | + "License :: OSI Approved :: MIT License", |
| 55 | + "Operating System :: OS Independent", |
| 56 | + "Natural Language :: English", |
| 57 | + "Operating System :: MacOS", |
| 58 | + "Operating System :: Microsoft :: Windows", |
| 59 | + "Operating System :: POSIX", |
| 60 | + "Operating System :: Unix", |
| 61 | + "Topic :: Security :: Cryptography", |
| 62 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 63 | + "Topic :: System :: Recovery Tools", |
| 64 | + "Topic :: System :: Systems Administration", |
| 65 | + "Topic :: Utilities" |
| 66 | + ], |
| 67 | + python_requires='<=2.7' |
47 | 68 | )
|
48 | 69 |
|
0 commit comments