|
| 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 | + |
| 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