-
Notifications
You must be signed in to change notification settings - Fork 20
/
setup.py
30 lines (28 loc) · 953 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
packages = find_packages()
setup(
name = "pwgen",
version = "0.8.2",
description = "Pure python version of pwgen",
long_description = "Simple version of pwgen to generate random password or strings",
author = "Vince Spicer, Pavel Vavilin, Luar Roji",
url = "https://github.com/vinces1979/pwgen",
license = "MIT",
platforms = ["any"],
packages=packages,
entry_points={
'console_scripts': [
'pwgen = pwgen.cmdline:main',
]},
keywords=[
'pwgen', 'password', 'strings', 'random'
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)