-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathsetup.py
40 lines (36 loc) · 1.07 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
import io
from setuptools import setup, find_packages
def readme():
with io.open('README.md', encoding='utf-8') as f:
return f.read()
setup(
name="marketsimulator",
version="0.0.1",
author="Francisco Merlos and Jesús Sanz",
author_email='[email protected]',
license='MIT License',
description="Realistic market matching engine simulator \
for HFT trading strategies",
long_description_content_type="text/markdown",
url="https://github.com/Surbeivol/PythonMatchingEngine",
packages=find_packages(),
install_requires=[
'cycler==0.10.0',
'kiwisolver==1.1.0',
'matplotlib==3.1.0',
'numpy==1.16.4',
'pandas==0.24.2',
'pyparsing==2.4.0',
'python-dateutil==2.8.0',
'pytz==2019.1',
'PyYAML==5.4',
'six==1.12.0',
'tqdm==4.32.2'
],
include_package_data=True,
classifiers=[
"Programmin Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)