Skip to content

Commit

Permalink
refactor: update license, pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
taylor-cedar committed Jul 9, 2021
1 parent aa97f9d commit 5575da9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 9 deletions.
File renamed without changes.
9 changes: 9 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"

[semantic_release]
version_variable = "setup.py:__version__"
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()

__version__ = "1.0.0"

setuptools.setup(
name="django-snapshot-queries",
version="0.0.1",
author="Example Author",
author_email="author@example.com",
name="django-bulk-load",
version=__version__,
author="Cedar",
author_email="support@cedar.com",
license="MIT",
description="A small example package",
description="Bulk load Django models",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pypa/sampleproject",
project_urls={
"Bug Tracker": "https://github.com/pypa/sampleproject/issues",
},
url="https://github.com/cedar/django-bulk-load",
project_urls={},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 5575da9

Please sign in to comment.