forked from seamusc/lepy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.03 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
from distutils.core import setup
from glob import glob
from setuptools import find_packages
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='r7insight_logsearch',
version='0.0.1',
author='Seamus Cawley',
author_email='[email protected]',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=['logsearch'],
url='http://pypi.python.org/pypi/R7Insight-Logsearch/',
license='LICENSE',
description='Python API to the Rapid7 Insight Log Search API',
long_description=long_description,
install_requires=[
'certifi==2018.4.16',
'chardet==3.0.4',
'idna==2.7',
'progress==1.4',
'python-dateutil==2.7.3',
'requests==2.20.0',
'six==1.11.0',
'tabulate==0.8.2',
'urllib3==1.23'
],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2'
]
)