-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
33 lines (31 loc) · 1.08 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
from setuptools import setup
pkgs = ["hive", "hive.src"]
install_requires = ["ctpbee", "redis", "click", "pandas"]
setup(
name="hive-c",
version="0.1",
description="Auto data service with ctpbee for linux. Do not support windows in here",
author="somewheve",
author_email="[email protected]",
url="https://github.com/ctpbee/hive",
license="Apache2",
packages=pkgs,
install_requires=install_requires,
platforms=["Linux", "Windows"],
package_dir={"hive": "hive"},
zip_safe=False,
include_package_data=True,
ext_modules=[],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
entry_points={"console_scripts": ["hive = hive:run_command"]},
)