-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
47 lines (43 loc) · 1.71 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
from os import path
from setuptools import find_packages, setup
requirements_path = path.join(path.dirname(__file__), "requirements.txt")
readme_path = path.join(path.dirname(__file__), "README.md")
with open(readme_path, "r", encoding="utf-8") as fh:
long_description = fh.read()
with open(requirements_path, "r", encoding="utf-8") as f:
requirements = f.read().splitlines()
setup(
name="pysgconnect",
version="2.3",
url="https://github.com/societe-generale/pysgconnect",
packages=find_packages(),
install_requires=requirements,
long_description=long_description,
long_description_content_type="text/markdown",
description="Utilities to interact with SGConnect",
python_requires=">=3.10",
include_package_data=True,
package_data={"": [readme_path, requirements_path]},
platforms="any",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: System :: Systems Administration :: Authentication/Directory",
"Natural Language :: French",
"Natural Language :: English",
"Environment :: MacOS X",
"Environment :: Web Environment",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications",
"Environment :: OpenStack",
"Environment :: Console",
"Environment :: Plugins",
"Environment :: No Input/Output (Daemon)",
"Environment :: Other Environment",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: Other/Proprietary License"
],
)