-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
37 lines (30 loc) · 1.09 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
# coding: utf-8
from setuptools import setup, find_packages
import os
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
__version__ = "0.1.17"
setup(
name='slaveo',
version=__version__,
keywords='slaveo',
description=u'交易相关的库',
long_description=read("README.md"),
url='https://github.com/lamter/slaveo',
author='lamter',
author_email='[email protected]',
packages=find_packages(),
package_data={
"tradingtime": ["*.json"],
},
install_requires=read("requirements.txt").splitlines(),
classifiers=['Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: MIT License'],
)