-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #45 from moshthepitt/no-django-2.0
No django 2.0
- Loading branch information
Showing
3 changed files
with
24 additions
and
22 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 |
---|---|---|
@@ -1,29 +1,32 @@ | ||
""" | ||
Setup.py for django-vega-admin | ||
""" | ||
from setuptools import setup, find_packages | ||
from setuptools import find_packages, setup | ||
|
||
setup( | ||
name='django-vega-admin', | ||
version=__import__('vega_admin').__version__, | ||
description='Simple and fast automated CRUD for any Django model', | ||
license='MIT', | ||
author='Kelvin Jayanoris', | ||
author_email='[email protected]', | ||
url='https://github.com/moshthepitt/django-vega-admin', | ||
packages=find_packages(exclude=['docs', 'tests']), | ||
name="django-vega-admin", | ||
version=__import__("vega_admin").__version__, | ||
description="Simple and fast automated CRUD for any Django model", | ||
license="MIT", | ||
author="Kelvin Jayanoris", | ||
author_email="[email protected]", | ||
url="https://github.com/moshthepitt/django-vega-admin", | ||
packages=find_packages(exclude=["docs", "tests"]), | ||
install_requires=[ | ||
'Django >=2.0.11', | ||
'django-crispy-forms', | ||
'django-braces', | ||
'django-filter', | ||
'django-tables2', | ||
'tablib', | ||
'pyyaml>=4.2b1', # fixes security vulnerability | ||
"Django >=2.1.10", | ||
"django-crispy-forms", | ||
"django-braces", | ||
"django-filter", | ||
"django-tables2", | ||
"tablib", | ||
"pyyaml>=4.2b1", # fixes security vulnerability | ||
], | ||
classifiers=[ | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3.6', | ||
'Programming Language :: Python :: 3.7' | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Framework :: Django", | ||
"Framework :: Django :: 2.1", | ||
"Framework :: Django :: 2.2", | ||
], | ||
) |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
""" | ||
Main init file for vega_admin | ||
""" | ||
VERSION = (0, 0, 9) | ||
VERSION = (0, 0, 10) | ||
__version__ = ".".join(str(v) for v in VERSION) | ||
# pylint: disable=invalid-name | ||
default_app_config = "vega_admin.apps.VegaAdminConfig" # noqa |