-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (40 loc) · 1.51 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
39
40
41
42
"""
This module contains code for deploying Password generator application
"""
from setuptools import setup
required_packages = ['pyqt5']
setup(
name='PasswordGenerator',
version='1.1',
url='https://github.com/IHappyPlant/PasswordGenerator',
author='IHappyPlant',
author_email='[email protected]',
license='MIT',
description='GUI app to generating passwords',
packages=['password_generator'],
install_requires=required_packages,
include_package_data=True,
python_requires='>=3.6',
keywords="password generator password-generator python3 gui application "
"app",
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Utilities',
'Topic :: Security',
'Operating System :: POSIX :: Linux',
'Operating System :: Microsoft :: Windows',
'Operating System :: Microsoft :: Windows :: Windows 10',
'Operating System :: Microsoft :: Windows :: Windows 7',
'Operating System :: Microsoft :: Windows :: Windows 8',
'Operating System :: Microsoft :: Windows :: Windows 8.1',
'Natural Language :: English',
'Environment :: X11 Applications :: Qt',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop'
]
)