-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated for pypi submission. It's up now!
- Loading branch information
Showing
3 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ | |
pip-log.txt | ||
zebra_sample_project/zebra_sample.db | ||
zebra_sample_project/locals.py | ||
django_zebra.egg-info/* | ||
dist/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,23 @@ | |
SOURCE_DIR = os.path.join(ROOT_DIR) | ||
|
||
setup( | ||
name = "zebra", | ||
name = "django-zebra", | ||
description = "Library for Django and Stripe", | ||
author = "Steven Skoczen", | ||
author_email = "[email protected]", | ||
url = "https://github.com/GoodCloud/django-zebra", | ||
version = "0.3", | ||
version = "0.4", | ||
packages = find_packages(), | ||
zip_safe = False, | ||
classifiers = [ | ||
"Programming Language :: Python", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Development Status :: 4 - Beta", | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
"Intended Audience :: Developers", | ||
"Topic :: Internet :: WWW/HTTP", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
) |