forked from pytr-org/pytr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (46 loc) · 1.31 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
43
44
45
46
47
48
49
50
from pathlib import Path
from setuptools import setup
def readme():
this_directory = Path(__file__).parent.resolve()
with open(this_directory / 'README.md', encoding='utf-8') as f:
return f.read()
setup(
name='pytr',
version='0.2.1',
description='Use TradeRepublic in terminal',
long_description=readme(),
long_description_content_type='text/markdown',
url='https://gitlab.com/pytr-org/pytr/',
author='marzzzello',
author_email='[email protected]',
license='MIT',
packages=['pytr'],
python_requires='>=3.8',
entry_points={
'console_scripts': [
'pytr = pytr.main:main',
],
},
# scripts=['traderep'],
# install_requires=['py_tr'],
install_requires=[
'certifi',
'coloredlogs',
'ecdsa',
'packaging',
'pathvalidate',
'pygments',
'requests_futures',
'shtab',
'websockets>=10.1',
],
classifiers=[
"License :: OSI Approved :: MIT License",
'Programming Language :: Python :: 3 :: Only',
"Operating System :: OS Independent",
'Development Status :: 3 - Alpha',
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
],
zip_safe=False,
)