-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (32 loc) · 1.02 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
import os
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
setup(
name='django-tastypie-apibrowser',
version='0.0.1',
description='JS Tastypie API Browser for Django.',
author='Kevin Mooney',
license='BSD',
author_email='[email protected]',
url='http://github.com/cuker/django-fbapps/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Utilities'
],
test_suite='setuptest.SetupTestSuite',
tests_require=(
'django-setuptest',
),
packages=find_packages(exclude=['test_environment']),
include_package_data = True,
)