-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 748 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 748 Bytes
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
import sys
import os
from setuptools import setup
from amoex import __version__
if sys.version_info[0] < 3:
sys.exit("Python2 is not supported")
description = """
Asyncio MOEX Python API
"""
setup(
name="amoex",
url="https://github.com/prokaktus/amoex",
version=__version__,
description=description.strip(),
author="Filipenko Maxim",
author_email="mfilipenko@yandex.ru",
packages=[
'amoex'
],
install_requires=['aiohttp', 'toolz'],
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
)