forked from soslan/passgen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (35 loc) · 1.1 KB
/
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
31
32
33
34
35
36
37
38
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('README.rst') as file:
long_description = file.read()
setup(name='passgen',
version='1.1.1',
description='Random password generator',
long_description=long_description,
url='https://github.com/soslan/passgen',
author='Soslan Khubulov',
author_email='soslanx@gmail.com',
license='MIT',
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'passgen = passgen:main',
],
},
py_modules=['passgen'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Topic :: Utilities',
],
keywords='password random',
)