forked from opendxl/opendxl-tie-client-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
52 lines (38 loc) · 1.22 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
from setuptools import setup
import distutils.command.sdist
from pkg_resources import Distribution
from distutils.dist import DistributionMetadata
import setuptools.command.sdist
# Patch setuptools' sdist behaviour with distutils' sdist behaviour
setuptools.command.sdist.sdist.run = distutils.command.sdist.sdist.run
VERSION = __import__('dxltieclient').get_version()
dist = setup(
# Application name:
name="dxltieclient",
# Version number:
version=VERSION,
# Requirements
install_requires={
"dxlclient",
},
# Application author details:
author="McAfee, Inc.",
# License
license="Apache License 2.0",
keywords=['opendxl', 'dxl', 'mcafee', 'client', 'tie'],
# Packages
packages=[
"dxltieclient",
],
# Details
url="http://www.mcafee.com/",
description="McAfee Threat Intelligence Exchange(TIE) DXL client library",
long_description=open('README').read(),
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
)