preparation for pypi
This commit is contained in:
parent
31ab2a23bf
commit
e41dd9e09b
4
MANIFEST.in
Normal file
4
MANIFEST.in
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
include LICENSE
|
||||||
|
include README.rst
|
||||||
|
include *.py
|
||||||
|
recursive-include brainstorm/templates *
|
27
setup.py
Normal file
27
setup.py
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
from distutils.core import setup
|
||||||
|
|
||||||
|
long_description = open('README.rst').read()
|
||||||
|
|
||||||
|
setup(
|
||||||
|
name='django-brainstorm',
|
||||||
|
version="0.1",
|
||||||
|
package_dir={'brainstorm': 'brainstorm'},
|
||||||
|
packages=['brainstorm'],
|
||||||
|
package_data={'brainstorm': ['templates/brainstorm/*.html']},
|
||||||
|
description='Django brainstorming site',
|
||||||
|
author='James Turk',
|
||||||
|
author_email='jturk@sunlightfoundation.com',
|
||||||
|
license='BSD License',
|
||||||
|
url='http://github.com/sunlightlabs/django-brainstorm/',
|
||||||
|
long_description=long_description,
|
||||||
|
platforms=["any"],
|
||||||
|
classifiers=[
|
||||||
|
'Development Status :: 4 - Beta',
|
||||||
|
'Intended Audience :: Developers',
|
||||||
|
'License :: OSI Approved :: BSD License',
|
||||||
|
'Natural Language :: English',
|
||||||
|
'Operating System :: OS Independent',
|
||||||
|
'Programming Language :: Python',
|
||||||
|
'Environment :: Web Environment',
|
||||||
|
],
|
||||||
|
)
|
Loading…
Reference in New Issue
Block a user