Skip to content

Commit 3530b20

Browse files
update 1.0.1
1 parent 6a49f13 commit 3530b20

File tree

3 files changed

+35
-1
lines changed

3 files changed

+35
-1
lines changed
1 Byte
Binary file not shown.

passmanager/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def range_type(value_string):
1212
def parse_args(args):
1313
parser = argparse.ArgumentParser(
1414
usage="passmanager SITE [LOGIN] [MASTER_PASSWORD] [OPTIONS]",
15-
description=open('./README.md').read(),
15+
description=open('../README.md').read(),
1616
# epilog=EXAMPLES + COPYRIGHT,
1717
formatter_class=argparse.RawDescriptionHelpFormatter,
1818
)

setup.py

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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

Comments
 (0)