Wooey/setup.py

38 lines
1.2 KiB
Python
Raw Normal View History

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:
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'],
scripts=['scripts/djanguify.py'],
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',
],
)