forked from pinax/pinax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.27 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
from setuptools import setup, find_packages
version = __import__('pinax').__version__
setup(
name='Pinax',
version=version,
description='Pinax is an open-source collection of re-usable apps for the Django Web Framework',
long_description=open('docs/intro.txt').read(),
author='James Tauber',
author_email='[email protected]',
maintainer='Jannis Leidel',
maintainer_email='[email protected]',
url='http://pinaxproject.com/',
packages=find_packages(),
include_package_data=True,
setup_requires=['setuptools_git'],
# Ignore the tarballs we built our own in a source distribution
exclude_package_data={
'requirements': ['%s/*.tar.gz' % version],
},
zip_safe=False,
entry_points={
'console_scripts': [
'pinax-admin = pinax.core.management:execute_from_command_line',
],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Programming Language :: Python :: 2.4',
'Programming Language :: JavaScript',
],
)