-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 928 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
37
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import io
import os
import sys
about = {}
about_filename = os.path.join(
os.path.dirname(os.path.realpath(__file__)),
'themis', 'finals', 'attack', 'result', '__about__.py')
with io.open(about_filename, 'rb') as fp:
exec(fp.read(), about)
setup(
name='themis.finals.attack.result',
version=about['__version__'],
description='Themis Finals attack result constants',
author='Alexander Pyatkin',
author_email='aspyatkin@gmail.com',
url='https://github.com/themis-project/themis-finals-attack-result-py',
license='MIT',
packages=find_packages('.'),
install_requires=[
'setuptools>=35.0.0'
],
extras_require={
':python_version<"3.4"': [
'enum34>=1.1.6'
]
},
namespace_packages=[
'themis',
'themis.finals',
'themis.finals.attack'
]
)