-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
42 lines (39 loc) · 1.43 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
38
39
40
41
42
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="wtfix",
version="0.16.2",
author="John Cass",
author_email="[email protected]",
description="The Pythonic Financial Information eXchange (FIX) client that you have been looking for.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jcass77/WTFIX",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
],
keywords="FIX financial information exchange",
packages=find_packages(exclude=["contrib", "docs", "tests"]),
install_requires=[
"python-dotenv>=0.10.3",
"flask-restful>=0.3.7",
"requests>=2.22",
"gunicorn>=19.9",
"aioredis>=1.3",
],
python_requires=">=3.8",
project_urls={
"Bug Reports": "https://github.com/jcass77/WTFIX/issues",
"Source": "https://github.com/jcass77/WTFIX/",
},
)