-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·41 lines (34 loc) · 970 Bytes
/
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
# -*- coding: utf-8 -*-
# Learn more: https://github.com/kennethreitz/setup.py
from setuptools import setup, find_packages
EXCLUDE_FROM_PACKAGES = ['falcon.bin']
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='falcon-tracer',
version='0.1.0',
description='',
author='Francisco Neves',
author_email='francisco.t.neves@inesctec.pt',
url='https://github.com/fntneves/falcon',
license=license,
packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
install_requires=[
'ujson',
'kafka',
'confluent-kafka',
'flatbuffers',
'python-dotenv',
'sortedcontainers',
'psutil'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
scripts=['falcon/bin/falcon-tracer.py'],
entry_points={'console_scripts': [
'falcon-tracer = falcon.core.tracer:main',
]}
)