-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (46 loc) · 1.38 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from os import path
from setuptools import setup, find_packages
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='pogcli',
license='MIT',
url='https://github.com/sz3/pog',
version='0.1.4',
entry_points={
'console_scripts': [
'pog = pog.pog:main',
'pog-create-keypair = pog.create_keypair:main',
'pog-cleanup = pog.cloud_cleanup:main',
],
},
packages=find_packages(exclude=('tests', 'pogui')),
package_data={
'pog': ['scripts/*.sh'],
},
python_requires='>=3.6',
install_requires=[
'argon2-cffi>=19.2.0',
'docopt>=0.6.2',
'humanfriendly>=4.18',
'PyNaCl>=1.3.0',
'zstandard>=0.11.1',
],
extras_require={
'b2': ['b2'],
's3': ['boto3'],
},
description='File encryption and backup utility',
long_description=long_description,
long_description_content_type='text/markdown',
author="Stephen Zimmerman",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
)