forked from novault/novault
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.31 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
35
36
37
38
from os. path import dirname, join as path_join
from setuptools import setup
with open( path_join( dirname( __file__ ), 'novault/__version__' )) as f:
__version__ = f. read()
setup(
name = 'novault',
packages = [ 'novault' ],
package_data = { 'novault': [ '__version__' ]},
version = __version__,
description = 'Stateless Password Manager and Brain Wallet',
license = 'MIT',
author = 'Avner Herskovits',
author_email = '[email protected]',
url = 'https://github.com/novault/novault',
download_url = 'https://github.com/novault/novault/tarball/' + __version__,
install_requires=[
'ecdsa >= 0.13',
'pyperclip >= 1.5.27',
'pyscrypt >= 1.6.2',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Other Environment',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries',
'Topic :: Security',
'Topic :: Security :: Cryptography',
'Topic :: Utilities',
],
)