-
Notifications
You must be signed in to change notification settings - Fork 101
/
setup.py
51 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
from os import path
from setuptools import setup, find_packages
#this should hopefully allow us to have a more pypi friendly, always up to date readme
readMeDir = path.abspath(path.dirname(__file__))
with open(path.join(readMeDir, 'README.md'), encoding='utf-8') as readFile:
long_desc = readFile.read()
VERSION = '1.4.11'
setup(
name='machinae',
version=VERSION,
author='Steve McMaster',
author_email='[email protected]',
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=False,
url='http://hurricanelabs.github.io/machinae/',
description='Machinae Security Intelligence Collector',
long_description=long_desc,
long_description_content_type='text/markdown',
install_requires=[
'dnspython3',
'ipwhois<0.11',
'requests',
'stopit',
'pyyaml',
'beautifulsoup4',
'html5lib',
'relatime',
'tzlocal',
'python-magic',
'feedparser',
'defang',
],
entry_points={
'console_scripts': [
'machinae = machinae.cmd:main',
]
},
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3 :: Only',
'Development Status :: 5 - Production/Stable',
],
bugtrack_url='https://github.com/HurricaneLabs/machinae/issues',
)