-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.j2
33 lines (29 loc) · 1 KB
/
setup.j2
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
#!/usr/bin/python
import setuptools
with open("README.md", "r") as fh:
LONG_DESCRIPTION = fh.read()
KEYWORDS = ('credit agricole api banking banque')
setuptools.setup(
name="creditagricole_particuliers",
version="{{ version }}",
author="Denis MACHARD",
author_email="[email protected]",
description="Python client pour la banque Crédit Agricole",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url="https://github.com/dmachard/creditagricole-particuliers",
packages=['creditagricole_particuliers'],
include_package_data=True,
data_files=[('creditagricole_particuliers', ['creditagricole_particuliers/aliases.json'])],
platforms='any',
keywords=KEYWORDS,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries",
],
install_requires=[
"requests"
]
)