Skip to content

Commit a3e69dc

Browse files
committed
Migrate from distutils => setuptools & add more package metadata
1 parent c51bba0 commit a3e69dc

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

setup.py

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from distutils.core import setup
1+
from setuptools import setup, find_packages
22
import inspect
33
import os, errno
44

@@ -39,10 +39,31 @@
3939
name='vncpasswd.py',
4040
version=version,
4141
packages=['d3des','WindowsRegistry',],
42+
scripts=['vncpasswd.py', 'pass2reg.cmd'],
4243
license='License :: OSI Approved :: MIT License',
44+
description='A Python implementation of vncpasswd, w/decryption abilities & extra features ;-)',
4345
long_description=readme,
46+
platforms=['any'],
4447
author='James Cuzella',
4548
author_email='[email protected]',
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'
4768
)
4869

0 commit comments

Comments
 (0)