-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
34 lines (32 loc) · 1.58 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
import setuptools
from distutils.core import setup
setup(
name = 'passmanager',
packages = ['passmanager'],
version = '1.0.7',
license='MIT',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
description = 'passmanager is an independent Open Source, Password Manager python library which implements a cli tools to create password for site and store it',
author = 'Sayan Mondal(ph3n1x)',
author_email = 'sayanmondal2098@gmail.com',
url = 'https://github.com/sayanmondal2098/passmanager',
download_url = 'https://github.com/sayanmondal2098/passmanager',
keywords = ['Password', 'Password Manager', 'Manager', 'cli tools'], # Keywords that define your package best
# install_requires=[
# '',
# ],
classifiers=[
'Development Status :: 5 - Production/Stable', # Chose either "1 - Planning" , "2 - Pre-Alpha" "3 - Alpha", "4 - Beta"
# or "5 - Production/Stable", "6 - Mature", "7 - Inactive" as the current state of your package
'Intended Audience :: Developers', # Define that your audience are developers
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: MIT License',# Again, pick a license
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)