Skip to content

Commit

Permalink
Add wikis
Browse files Browse the repository at this point in the history
  • Loading branch information
KFoxder committed Nov 8, 2022
1 parent bf42ccd commit 36d6ce6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 2 deletions.
6 changes: 6 additions & 0 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Create Release

1. Update version in `autocompleter/__init__.py`
2. `pip install -r dev_requirements.txt`
3. `python -m build`
4. `twine upload dist/*`
11 changes: 9 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ build-backend = "setuptools.build_meta"

[project]
name = "django-redis-autocompleter"
version = "1.0.0"
authors = [
{ name="Ara Anjargolian", email="[email protected]" },
{ name="Kevin Fox", email="[email protected]" },
Expand All @@ -28,10 +27,18 @@ dependencies = [
"hiredis >= 1",
"redis >= 3",
]
dynamic = ["version"]

[project.urls]
"Homepage" = "https://github.com/ycharts/django-autocompleter"
"Bug Tracker" = "https://github.com/ycharts/django-autocompleter/issues"

[tool.setuptools]
packages = ["autocompleter"]
packages = [
"autocompleter",
"autocompleter.management",
"autocompleter.management.commands",
]

[tool.setuptools.dynamic]
version = {attr = "autocompleter.VERSION"}

0 comments on commit 36d6ce6

Please sign in to comment.