-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
31 lines (28 loc) · 1.1 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
from setuptools import setup
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md')) as f:
long_description = f.read()
setup(
name="sbedecoder",
version="0.1.8",
author="TradeForecaster Global Markets, LLC",
author_email="[email protected]",
description="Simple Binary Encoding (SBE) decoder (handles CME MDP3 messages)",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
keywords="sbe mdp3 orderbook message decoder",
url="https://github.com/tfgm/sbedecoder",
packages=['sbedecoder', 'mdp', 'mdp.orderbook'],
scripts=['scripts/mdp_decoder.py', 'scripts/mdp_base64_decoder.py', 'scripts/mdp_book_builder.py'],
install_requires=['dpkt', 'lxml', 'six'],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6'
]
)