-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
33 lines (28 loc) · 1 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
# -*- coding:utf-8 -*-
from setuptools import setup, find_packages
import pandaxt as pxt
requirements = ['requests', 'pandas', 'ccxt', 'Cython', 'tulipy', 'py-term', 'cctf', 'diskcache']
exclude = ['.idea*', 'build*', '{}.egg-info*'.format(pxt.__package__), 'dist*', 'venv*', 'doc*', 'lab*']
classifiers = [
'Development Status :: 5 - Production',
'License :: OSI Approved :: MIT License',
'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',
]
setup(
name=pxt.__package__,
version=pxt.__version__,
packages=find_packages(exclude=exclude),
url=pxt.__site__,
license=pxt.__license__,
keywords=pxt.__keywords__,
author=pxt.__author__,
author_email=pxt.__email__,
long_description=pxt.__description__,
description=pxt.__description__,
classifiers=classifiers,
install_requires=requirements
)