-
Notifications
You must be signed in to change notification settings - Fork 30
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 #18 from raiderrobert/develop
Bringing everything up to date for pypi
- Loading branch information
Showing
6 changed files
with
50 additions
and
27 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,7 +1,22 @@ | ||
*.pyc | ||
*.py[co] | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
_build | ||
|
||
# pycharm files | ||
.idea/ | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
htmlcov | ||
dist/ | ||
*.egg-info/ | ||
.tox/ | ||
.idea/ | ||
.tox |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Include the license file | ||
include LICENSE.txt |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[metadata] | ||
description-file = README.rst | ||
|
||
[bdist_wheel] | ||
universal=1 |
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,24 +1,18 @@ | ||
import os | ||
from setuptools import setup | ||
|
||
def read(fname): | ||
return open(os.path.join(os.path.dirname(__file__), fname)).read() | ||
from setuptools import setup, find_packages | ||
|
||
setup( | ||
name = 'django-multiurl', | ||
version = '1.1.0', | ||
description = 'Allow multiple views to match the same URL.', | ||
license = 'BSD', | ||
long_description = read('README.rst'), | ||
url = 'https://github.com/jacobian/django-multiurl', | ||
|
||
author = 'Jacob Kaplan-Moss and Robert Roskam', | ||
author_email = '[email protected]', | ||
|
||
py_modules = ['multiurl'], | ||
install_requires = ['django>=1.5'], | ||
|
||
classifiers = ( | ||
name='django-multiurl', | ||
py_modules=['multiurl'], | ||
version='1.1.0', | ||
description='Allow multiple views to match the same URL.', | ||
license='BSD', | ||
url='https://github.com/raiderrobert/django-multiurl', | ||
download_url='https://github.com/raiderrobert/django-multiurl/tarball/v1.1.0', | ||
author='Jacob Kaplan-Moss and Robert Roskam', | ||
author_email='[email protected]', | ||
install_requires=['django>=1.5'], | ||
keywords='django urls', | ||
classifiers=[ | ||
'Development Status :: 4 - Beta', | ||
'Environment :: Web Environment', | ||
'Framework :: Django', | ||
|
@@ -29,5 +23,5 @@ def read(fname): | |
'Programming Language :: Python :: 2.7', | ||
'Programming Language :: Python :: 3.2', | ||
'Programming Language :: Python :: 3.3', | ||
), | ||
], | ||
) |
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