-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·34 lines (33 loc) · 1.36 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
#!/usr/bin/env python3
from keystore import __version__
from setuptools import setup
with open('README.md') as readme, open('requirements.txt') as requirements:
setup(
name = 'keystore',
packages = ['keystore'],
version = __version__,
install_requires = requirements.read().split(),
description = 'Command line tools to compress and encrypt your keys',
author = 'Xavier Ho',
author_email = 'contact@xavierho.com',
url = 'https://github.com/Spaxe/keystore',
download_url = 'https://github.com/Spaxe/keystore/archive/master.zip',
keywords = ['keys', 'tokens', 'archive'],
scripts=['keystore-load', 'keystore-save'],
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: System :: Archiving :: Backup',
'Topic :: System :: Archiving :: Compression',
'Topic :: Security',
'Topic :: Security :: Cryptography',
],
long_description = readme.read()
)