-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
55 lines (47 loc) · 1.66 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
51
52
53
54
55
#!/usr/bin/env python
import setuptools
application_dependencies = ["api-client>=1.3.1"]
prod_dependencies = []
test_dependencies = [
"pytest", "pytest-env", "pytest-cov", "vcrpy", "requests-mock", "pytest-order",
"requests_html", "bs4"]
lint_dependencies = ["flake8", "flake8-docstrings", "black", "isort"]
docs_dependencies = []
dev_dependencies = test_dependencies + lint_dependencies + docs_dependencies + ["ipdb"]
publish_dependencies = ["requests", "twine"]
with open("README.md", "r") as fh:
long_description = fh.read()
with open("VERSION", "r") as buf:
version = buf.read()
setuptools.setup(
name="nordigen-python",
version=version,
description="Clinet lib for integration with Nordigen banking API's",
long_description=long_description,
long_description_content_type="text/markdown",
author="Carl Sutton (dogmatic69)",
author_email="[email protected]",
license='MIT',
keywords=['nordigen', 'banking', 'PSD2'],
url="https://github.com/dogmatic69/nordigen-python",
python_requires=">=3.6",
packages=["nordigen"],
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
],
install_requires=application_dependencies,
extras_require={
"production": prod_dependencies,
"test": test_dependencies,
"lint": lint_dependencies,
"docs": dev_dependencies,
"dev": dev_dependencies,
"publish": publish_dependencies,
},
include_package_data=True,
zip_safe=False,
)