Skip to content

Commit

Permalink
Migrate from distutils => setuptools & add more package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
trinitronx committed Jan 29, 2020
1 parent c51bba0 commit a3e69dc
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup, find_packages
import inspect
import os, errno

Expand Down Expand Up @@ -39,10 +39,31 @@
name='vncpasswd.py',
version=version,
packages=['d3des','WindowsRegistry',],
scripts=['vncpasswd.py', 'pass2reg.cmd'],
license='License :: OSI Approved :: MIT License',
description='A Python implementation of vncpasswd, w/decryption abilities & extra features ;-)',
long_description=readme,
platforms=['any'],
author='James Cuzella',
author_email='james.cuzella@lyraphase.com',
url='https://github.com/trinitronx/vncpasswd.py'
url='https://github.com/trinitronx/vncpasswd.py',
classifiers=[
"Programming Language :: Python :: 2 :: Only",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Recovery Tools",
"Topic :: System :: Systems Administration",
"Topic :: Utilities"
],
python_requires='<=2.7'
)

0 comments on commit a3e69dc

Please sign in to comment.