2015-04-15 16:42:08 +00:00
|
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
|
2015-04-29 14:31:06 +00:00
|
|
|
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as readme:
|
2015-04-15 16:42:08 +00:00
|
|
|
README = readme.read()
|
|
|
|
|
|
|
|
# allow setup.py to be run from any path
|
|
|
|
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='djangui',
|
|
|
|
version='0.0.0',
|
|
|
|
packages=['djangui'],
|
2015-05-04 05:03:02 +00:00
|
|
|
scripts=['scripts/djanguify.py'],
|
2015-04-15 16:42:08 +00:00
|
|
|
include_package_data=True,
|
|
|
|
license='GPLv3',
|
|
|
|
description='An app to create a Django app or project from argparse scripts',
|
|
|
|
long_description=README,
|
|
|
|
url='http://www.github.com/chris7/djangui',
|
|
|
|
author='Chris Mitchell',
|
|
|
|
author_email='chris.mit7@gmail.com',
|
|
|
|
classifiers=[
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Django',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: GPLv3 License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
# Replace these appropriately if you are stuck on Python 2.
|
|
|
|
'Programming Language :: Python :: 3',
|
|
|
|
'Programming Language :: Python :: 3.2',
|
|
|
|
'Programming Language :: Python :: 3.3',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|