-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.08 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import io
import os
about = {}
about_filename = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'volgactf', 'final', '__about__.py')
with io.open(about_filename, 'rb') as fp:
exec(fp.read(), about)
setup(
name='volgactf.final',
version=about['__version__'],
description='VolgaCTF Final CLI & public API library',
author='Alexander Pyatkin',
author_email='[email protected]',
url='https://github.com/VolgaCTF/volgactf-final-py',
license='MIT',
packages=find_packages('.'),
install_requires=[
'setuptools>=35.0.0',
'requests>=2.18.4',
'grequests==0.3.0',
'click>=6.7',
'python-dateutil>=2.6.0',
'PyJWT>=1.6.4,<1.7.0',
'cryptography>=2.3.0'
],
extras_require={
':python_version<"3.4"': [
'enum34>=1.1.6'
]
},
namespace_packages=[
'volgactf'
],
entry_points={
'console_scripts': [
'volgactf-final = volgactf.final:cli',
]
}
)