Skip to content

Commit

Permalink
preparing for pypi
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaslau committed Nov 5, 2024
1 parent 26e9e80 commit dd98aa9
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 2 deletions.
11 changes: 11 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"

[tool.black]
line-length = 88
include = '\.pyi?$'

[tool.isort]
profile = "black"
multi_line_output = 3
28 changes: 26 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,34 @@
line.strip() for line in f if line.strip() and not line.startswith("#")
]

# Read long description from README.md
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()

setup(
name="pynions",
version="0.1.0",
version="0.2.11",
author="Tomas Laurinavicius",
author_email="[email protected]",
description="Simple AI automation framework for marketers",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/tomaslau/pynions",
packages=find_packages(),
install_requires=requirements,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.8",
install_requires=requirements,
include_package_data=True,
package_data={
"pynions": ["py.typed"],
},
)

0 comments on commit dd98aa9

Please sign in to comment.