-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove pytest from CI Add PyPi-compatible docs in setup.py Revise trove classifiers Improve .gitignore Update CI configuration
- Loading branch information
Showing
7 changed files
with
242 additions
and
80 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
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,11 +1,45 @@ | ||
build | ||
dist | ||
.coverage | ||
.tox | ||
.idea | ||
MANIFEST | ||
*.pyc | ||
*.egg-info | ||
*.egg | ||
.DS_Store | ||
|
||
# Byte-compiled / optimized / DLL files | ||
__pycache__/ | ||
*.py[cod] | ||
|
||
|
||
# Distribution / packaging | ||
.Python | ||
env/ | ||
build/ | ||
develop-eggs/ | ||
dist/ | ||
docs/_build/ | ||
eggs/ | ||
lib/ | ||
lib64/ | ||
parts/ | ||
sdist/ | ||
var/ | ||
*.egg-info/ | ||
.installed.cfg | ||
*.egg | ||
*.eggs | ||
.python-version | ||
|
||
# Pipfile | ||
Pipfile | ||
Pipfile.lock | ||
|
||
# Installer logs | ||
pip-log.txt | ||
pip-delete-this-directory.txt | ||
|
||
# Unit test / coverage reports | ||
htmlcov/ | ||
.tox/ | ||
.coverage | ||
.cache | ||
nosetests.xml | ||
coverage.xml | ||
|
||
# IDEs | ||
.idea/ |
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
Empty file.
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,38 +1,103 @@ | ||
from setuptools import find_packages, setup | ||
|
||
VERSION = "1.0.1" | ||
LONG_DESCRIPTION = """ | ||
.. image:: http://pinaxproject.com/pinax-design/patches/pinax-templates.svg | ||
:target: https://pypi.python.org/pypi/pinax-templates/ | ||
=================== | ||
Pinax Notifications | ||
=================== | ||
.. image:: https://img.shields.io/pypi/v/pinax-templates.svg | ||
:target: https://pypi.python.org/pypi/pinax-templates/ | ||
\ | ||
.. image:: https://img.shields.io/circleci/project/github/pinax/pinax-templates.svg | ||
:target: https://circleci.com/gh/pinax/pinax-templates | ||
.. image:: https://img.shields.io/codecov/c/github/pinax/pinax-templates.svg | ||
:target: https://codecov.io/gh/pinax/pinax-templates | ||
.. image:: https://img.shields.io/github/contributors/pinax/pinax-templates.svg | ||
:target: https://github.com/pinax/pinax-templates/graphs/contributors | ||
.. image:: https://img.shields.io/github/issues-pr/pinax/pinax-templates.svg | ||
:target: https://github.com/pinax/pinax-templates/pulls | ||
.. image:: https://img.shields.io/github/issues-pr-closed/pinax/pinax-templates.svg | ||
:target: https://github.com/pinax/pinax-templates/pulls?q=is%3Apr+is%3Aclosed | ||
\ | ||
.. image:: http://slack.pinaxproject.com/badge.svg | ||
:target: http://slack.pinaxproject.com/ | ||
.. image:: https://img.shields.io/badge/license-MIT-blue.svg | ||
:target: https://pypi.python.org/pypi/pinax-templates/ | ||
\ | ||
``pinax-templates`` provides semantically-correct templates for use with Pinax apps. | ||
Supported Pinax Apps | ||
-------------------- | ||
* django-user-accounts | ||
* pinax-announcements | ||
* pinax-blog | ||
* pinax-cohorts | ||
* pinax-documents | ||
* pinax-invitations | ||
* pinax-likes | ||
* pinax-notifications | ||
* pinax-strip | ||
Supported Django and Python Versions | ||
------------------------------------ | ||
+-----------------+-----+-----+-----+-----+ | ||
| Django / Python | 2.7 | 3.4 | 3.5 | 3.6 | | ||
+=================+=====+=====+=====+=====+ | ||
| 1.11 | * | * | * | * | | ||
+-----------------+-----+-----+-----+-----+ | ||
| 2.0 | | * | * | * | | ||
+-----------------+-----+-----+-----+-----+ | ||
""" | ||
|
||
setup( | ||
author="Pinax Developers", | ||
author_email="", | ||
author="Pinax Team", | ||
author_email="[email protected]", | ||
description="semantic templates for pinax apps", | ||
name="pinax-templates", | ||
version="1.0.0", | ||
long_description=LONG_DESCRIPTION, | ||
version=VERSION, | ||
url="http://github.com/pinax/pinax-templates/", | ||
license="MIT", | ||
long_description_content_type="text/markdown", | ||
packages=find_packages(), | ||
include_package_data=True, | ||
test_suite="runtests.runtests", | ||
install_requires=[ | ||
"Django>=1.8", | ||
"django-bootstrap-form>=3.0.0" | ||
], | ||
tests_require=[ | ||
], | ||
extras_require={ | ||
"pytest": ["pytest", "pytest-django"] | ||
}, | ||
classifiers=[ | ||
"Development Status :: 4 - Beta", | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Web Environment", | ||
"Framework :: Django", | ||
'Framework :: Django :: 1.11', | ||
'Framework :: Django :: 2.0', | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 2", | ||
"Programming Language :: Python :: 3", | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.4', | ||
'Programming Language :: Python :: 3.5', | ||
'Programming Language :: Python :: 3.6', | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
], | ||
install_requires=[ | ||
"django>=1.11", | ||
"django-bootstrap-form>=3.0.0" | ||
], | ||
tests_require=[ | ||
], | ||
test_suite="runtests.runtests", | ||
zip_safe=False | ||
) |
Oops, something went wrong.