|
| 1 | + |
| 2 | +import setuptools |
| 3 | +from distutils.core import setup |
| 4 | + |
| 5 | +setup( |
| 6 | + name = 'passmanager', |
| 7 | + packages = ['passmanager'], |
| 8 | + version = '1.0.1', |
| 9 | + license='MIT', |
| 10 | + long_description=open('README.md').read(), |
| 11 | + long_description_content_type='text/markdown', |
| 12 | + description = 'passmanager is an independent Open Source, Password Manager python library which implements a cli tools to create password for site and store it', |
| 13 | + author = 'Sayan Mondal(ph3n1x)', |
| 14 | + author_email = '[email protected]', |
| 15 | + url = 'https://github.com/sayanmondal2098/easytoken', |
| 16 | + download_url = 'https://github.com/sayanmondal2098/easytoken', |
| 17 | + keywords = ['Password', 'Password Manager', 'Manager', 'cli tools'], # Keywords that define your package best |
| 18 | +# install_requires=[ |
| 19 | +# '', |
| 20 | +# ], |
| 21 | + classifiers=[ |
| 22 | + 'Development Status :: 5 - Production/Stable', # Chose either "1 - Planning" , "2 - Pre-Alpha" "3 - Alpha", "4 - Beta" |
| 23 | + # or "5 - Production/Stable", "6 - Mature", "7 - Inactive" as the current state of your package |
| 24 | + 'Intended Audience :: Developers', # Define that your audience are developers |
| 25 | + 'Topic :: Software Development :: Build Tools', |
| 26 | + 'License :: OSI Approved :: MIT License',# Again, pick a license |
| 27 | + 'Operating System :: OS Independent', |
| 28 | + 'Programming Language :: Python :: 3', |
| 29 | + 'Programming Language :: Python :: 3.4', |
| 30 | + 'Programming Language :: Python :: 3.5', |
| 31 | + 'Programming Language :: Python :: 3.6', |
| 32 | + 'Programming Language :: Python :: 3.7', |
| 33 | + ], |
| 34 | +) |
0 commit comments