-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (47 loc) · 1.62 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
""" IR-Flow Client setup.py"""
from codecs import open
from setuptools import setup
import os
with open('requirements.txt') as f:
base_requirements = f.read().splitlines()
with open('requirements-dev.txt') as f:
dev_requirements = f.read().splitlines()
# Absolute repo path
here = os.path.abspath(os.path.dirname(__file__))
about = {}
with open(os.path.join(here, "irflow_client", '__version__.py'), 'r', 'utf-8') as f:
exec(f.read(), about)
setup(
name=about['__title__'],
version=about['__version__'],
description=about['__description__'],
long_description=about['__description__'],
author=about['__author__'],
author_email=about['__author_email__'],
url=about['__url__'],
maintainer='Syncurity Corp.',
maintainer_email='support@syncurity.net',
keywords='Syncurity syncurity IR-Flow ir-flow irflow security incident response',
license=about['__license__'],
packages=['irflow_client'],
platforms=['Windows', 'MacOS', 'Enterprise Linux'],
install_requires=base_requirements,
# python_requires='>=2.7.*, >=3.6',
extras_require={
'dev': [
dev_requirements
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Topic :: Security'
]
)