Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastien-ollivier authored Jan 21, 2025
1 parent 0e32c5c commit 26b8078
Showing 1 changed file with 30 additions and 4 deletions.
34 changes: 30 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,47 @@
from os import path
from setuptools import find_packages, setup

with open("README.md", "r", encoding="utf-8") as fh:
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.txt", "r", encoding="utf-8") as f:
with open(requirements_path, "r", encoding="utf-8") as f:
requirements = f.read().splitlines()

setup(
name="pysgconnect",
version="2.2.2",
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=["Programming Language :: Python :: 3"],
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"
],
)

0 comments on commit 26b8078

Please sign in to comment.