-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (20 loc) · 686 Bytes
/
setup.py
File metadata and controls
24 lines (20 loc) · 686 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
# -*- coding: utf-8 -*-
from io import open
from setuptools import setup, find_packages
with open('README.md', encoding="utf-8") as f:
readme = f.read()
with open('LICENSE', encoding="utf-8") as f:
license = f.read()
setup(
name="msbench",
version="1.0.8",
description="Benchmarking tool for marketstore",
author="Daito Akimura",
install_requires=["pymarketstore @ git+https://github.com/alpacahq/pymarketstore.git@5ec2911e26dbd72ece1c4dba7a965060038965a5#egg=pymarketstore", "argparse", ],
packages=find_packages(exclude=('tests', 'docs')),
entry_points={
"console_scripts": [
"msbench = msbench.app:main",
]
}
)