Skip to content

Commit

Permalink
Merge pull request #5 from salmanxmoh/change-setup.py-to-pyroject.toml
Browse files Browse the repository at this point in the history
remove setup.py and replace it with pyproject.toml.
  • Loading branch information
seyed-dev authored Oct 28, 2023
2 parents ec2bc60 + 4146247 commit bb6bc6a
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 22 deletions.
29 changes: 29 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
[project]
name = "aggify"
version = "0.1.6"
authors = [
{ name="SeYeD.Dev", email="[email protected]" },
]
description = "A MongoDB aggregation generator for Mongoengine"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mongoengine >= 0.27.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
]

[project.urls]
Homepage = "https://github.com/Aggify/aggify"
"Source Code" = "https://github.com/Aggify/aggify"
"Bug Tracker" = "https://github.com/Aggify/aggify/issues"
Documentation = "https://github.com/Aggify/aggify/docs"

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
22 changes: 0 additions & 22 deletions setup.py

This file was deleted.

0 comments on commit bb6bc6a

Please sign in to comment.