-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
54 lines (49 loc) · 1.22 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import os
from setuptools import (
find_packages,
setup,
)
here = os.path.dirname(os.path.realpath(__file__))
with open(os.path.join(here, 'README.md')) as f:
README = f.read().strip()
with open(os.path.join(here, 'CHANGES.md')) as f:
CHANGES = f.read().strip()
with open(os.path.join(here, 'VERSION')) as f:
VERSION = f.read().strip()
dependency_links = []
setup_requires = [
'pytest-runner',
]
install_requires = [
'aiohttp',
'pyyaml',
'requests',
'websockets',
]
test_requires = [
'pytest',
]
data_files = [
('', ['README.md', 'CHANGES.md', 'VERSION']),
]
entry_points = {
'console_scripts': [
'watchdepth = scripts.watch_depth:main',
'watchcandlesticks = scripts.watch_candlesticks:main',
]
}
setup(name='binance',
description='Binance API Application',
long_description=README + '\n\n' + CHANGES,
version=VERSION,
author='c0lon',
author_email='',
dependency_links=dependency_links,
setup_requires=setup_requires,
install_requires=install_requires,
test_requires=test_requires,
packages=find_packages(),
data_files=data_files,
include_package_data=True,
entry_points=entry_points
)