forked from J05HI/pytr
-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
27 lines (25 loc) · 886 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="py_tr",
version="1.0.2",
author="Nils Borrmann",
author_email="n.borrmann@googlemail.com",
license='MIT',
description="Unoffical Python Interface for the Trade Republic API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nborrmann/pytr",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment"
],
python_requires='>=3.5',
package_dir={'': 'src'},
packages=setuptools.find_packages('src'),
)