-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (31 loc) · 999 Bytes
/
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
from setuptools import setup, find_packages
import pyrusquant
description_short = """
Pyrusquant is a package for interaction with alternative data, trading API of different exchanges and brokers'
"""
with open('README.md') as file:
description = file.read()
with open('README.md') as file:
text_license = file.read()
setup(
name='pyrusquant',
version=pyrusquant.__version__,
description=description_short,
long_description=description,
long_description_content_type='text/markdown',
author='Arbuzov Vyacheslav, Petukhov Maksim',
url='https://github.com/arbuzovv/pyrusquant',
packages=find_packages(),
license=text_license,
install_requires=[
'aiohttp>=3.9.1',
'pandas>=2.1.3',
'requests>=2.31.0',
],
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
],
python_requires=">=3.7",
)