-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (23 loc) · 834 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
from distutils.core import setup
setup(
name='getpw',
packages=['getpw'],
version='0.4',
license='MIT',
description='A better way to get passwords from users in python',
author='n0x1s',
author_email='n0x1s0x01@gmail.com',
url='https://github.com/n0x1s/getpw',
download_url='https://github.com/N0x1s/getpw/archive/0.4.tar.gz',
keywords=['getpass', 'get password', 'mask password'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)