-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 951 Bytes
/
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
35
36
# -*- coding:utf-8 -*-
__version__ = "0.5"
__author__ = [
"Jason Lai <[email protected]>"
]
from setuptools import setup
setup(name='papyrus',
version=__version__,
description='A safely (use AES256 encrypt/decrypt) simple cmd program that manage the infomation of passwords.',
author='Jason Lai',
author_email='[email protected]',
url='https://github.com/JasonLai256/papyrus',
py_modules=['papyrus'],
license="BSD",
install_requires=[
'pycrypto',
],
scripts=[
'bin/papyrus',
],
platforms=["any"],
classifiers=[
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Office/Business :: Scheduling'
],
test_suite='test_papyrus'
)