-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
43 lines (40 loc) · 1.38 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
43
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('docs/README.md') as f:
long_description = f.read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='Python Password',
version='0.2.5',
description='Simple password storing app.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/AnonymousX86/Python-Password',
author='Jakub Suchenek',
author_email='jakub.suchenek.25@gmail.com',
license='GNU GPL v3',
classifiers=[
'Development status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3.7',
'Topic :: Security :: Cryptography'
],
keywords='password storing security cryptography',
project_urls={
'Source': 'https://github.com/AnonymousX86/Python-Password',
'Tracker': 'https://github.com/AnonymousX86/Python-Password/issues'
},
packages=find_packages(),
# py_modules=[],
install_requires=requirements,
python_requires='~=3.7',
# package_data={},
# data_files=(),
# scripts=(),
# entry_points={}
)