Added better setup.py pieces. Getting ready to push to our PyPi

This commit is contained in:
Corey Oordt 2010-04-07 09:43:35 -04:00
parent fdeb2fc14e
commit c1c2a72115
3 changed files with 39 additions and 13 deletions

13
MANIFEST.in Normal file
View file

@ -0,0 +1,13 @@
include requirements.txt
include NOTICES.txt
include README.txt
include CREDITS.txt
include LICENSE.txt
recursive-include categories *.html *.txt *.json *.html
recursive-include editor *.html *.txt *.json *.html *.gif *.png *.css *.js
recursive-include doc_src *.rst *.txt *.png *.css *.html *.js
include doc_src/Makefile
include doc_src/make.bat

1
requirements.txt Normal file
View file

@ -0,0 +1 @@
django-mptt>=0.3

View file

@ -1,21 +1,33 @@
from distutils.core import setup
import categories
import os
try:
long_description = open('README.txt').read()
except IOError:
long_description = ''
setup(name='django-categories',
version=categories.get_version(),
description='A way to handle one or more hierarchical category trees in django.',
long_description=long_description,
author='Corey Oordt',
author_email='coordt@washingtontimes.com',
url='http://opensource.washingtontimes.com/projects/django-categories/',
packages=['categories', 'editor'],
classifiers=['Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: Apache License',
],
)
try:
reqs = open(os.path.join(os.path.dirname(__file__), 'requirements.txt')).read()
except (IOError, OSError):
reqs = ''
setup(
name='django-categories',
version=categories.get_version(),
description='A way to handle one or more hierarchical category trees in django.',
long_description=long_description,
author='Corey Oordt',
author_email='coordt@washingtontimes.com',
url='http://opensource.washingtontimes.com/projects/django-categories/',
packages=['categories', 'editor'],
classifiers=[
'Development Status :: 4 - Beta',
'Framework :: Django',
'License :: OSI Approved :: Apache License',
],
install_requires = reqs,
dependency_links = [
'http://opensource.washingtontimes.com/static/dist/django-mptt-0.3_pre.tar.gz#md5=2e7bf48ae24958ec3702314506f4fe99',
]
)