Slide 77
Slide 77 text
from setuptools import setup, find_packages
setup(
name=NAME,
version=VERSION,
description='A Django Debug Toolbar panel to show VCS info',
long_description=read('README.rst'),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='django django-debug-toolbar git vcs info revision hash panel',
author='giginet',
author_email='giginet.net@gmail.com',
url='https://github.com/giginet/%s' % NAME,
download_url='https://github.com/giginet/%s/tarball/master' % NAME,
license='MIT',
packages=find_packages(),
include_package_data=True,
package_data={
'': ['README.rst',
'requirements.txt',
'requirements-test.txt'],
},
zip_safe=True,
install_requires=readlist('requirements.txt'),
test_suite='runtests.run_tests',
tests_require=readlist('requirements-test.txt'),
)