-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (27 loc) · 777 Bytes
/
Copy pathsetup.py
File metadata and controls
38 lines (27 loc) · 777 Bytes
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
#!/usr/bin/env python
# coding: utf-8
__author__ = "Sebastien De Fauw"
from setuptools import setup, find_packages
setup(
name="Bridge Origin",
version="0.1.0",
description='Bridge Origin is a tool to unify network traces and log files.',
# simple to run
entry_points={
'console_scripts': [
'brorig = brorig.main:setup',
],
},
author='Sebastien De Fauw',
author_email="sdefauw@gmail.com",
packages=find_packages(exclude=('tests', 'docs')),
include_package_data=True, #include data from MANIFEST.in
download_url = (""),
install_requires=[
'tornado>=4.0.0',
'paramiko>=1.14.0',
'pymysql>=0.6.6',
'pytz>=2013.7',
'elasticsearch>=5.0.1'
],
)