Skip to content

Commit 6f12dd5

Browse files
committed
Create setup.py
1 parent 664169f commit 6f12dd5

File tree

1 file changed

+43
-0
lines changed

1 file changed

+43
-0
lines changed

setup.py

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# -*- coding: utf-8 -*-
2+
from setuptools import setup, find_packages
3+
4+
with open('README.md') as f:
5+
long_description = f.read()
6+
7+
with open('requirements.txt') as f:
8+
requirements = f.read().splitlines()
9+
10+
setup(
11+
name='Python Password',
12+
version='0.1.2',
13+
description='Simple password storing app.',
14+
long_description=long_description,
15+
long_description_content_type='text/markdown',
16+
url='https://github.com/AnonymousX86/Python-Password',
17+
author='Jakub Suchenek',
18+
author_email='[email protected]',
19+
license='GNU GPL v3',
20+
classifiers=[
21+
'Development status :: 2 - Pre-Alpha',
22+
'Environment :: Console',
23+
'Intended Audience :: End Users/Desktop',
24+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
25+
'Natural Language :: English',
26+
'Operating System :: Microsoft :: Windows',
27+
'Programming Language :: Python :: 3.8',
28+
'Topic :: Security :: Cryptography'
29+
],
30+
keywords='password storing security cryptography',
31+
project_urls={
32+
'Source': 'https://github.com/AnonymousX86/Python-Password',
33+
'Tracker': 'https://github.com/AnonymousX86/Python-Password/issues'
34+
},
35+
packages=find_packages(),
36+
# py_modules=[],
37+
install_requires=requirements,
38+
python_requires='~=3.8',
39+
# package_data={},
40+
# data_files=(),
41+
# scripts=(),
42+
# entry_points={}
43+
)

0 commit comments

Comments
 (0)