-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (30 loc) · 956 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (30 loc) · 956 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
35
36
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='cira-classic',
version='1.0.4',
description='A older style of the cira library.',
url='https://github.com/AxelGard/cira-classic/',
author='Axel Gard',
author_email='axel.gard@tutanota.com',
license='MIT',
packages=['cira_classic'],
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=['alpaca-trade-api'],
extras_requires = {
"dev": [
"pytest"
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Office/Business :: Financial",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)