forked from vinces1979/pwgen
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
26 lines (24 loc) · 786 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
#!/usr/bin/env python
from setuptools import setup, find_packages
packages=find_packages()
setup(
name = "pwgen",
version = "0.4",
description = "Pure python version of pwgen",
long_description = "Simple version of pwgen to generate random password or strings",
author = "Vince Spicer",
author_email = "[email protected]",
url = "https://github.com/vinces1979/pwgen",
license = "MIT",
platforms = ["any"],
packages=packages,
keywords = [
'pwgen', 'password', 'strings', 'random'
],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)