-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·37 lines (34 loc) · 1.1 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
#!/usr/bin/env python
try:
from setuptools import setup, find_packages
except ImportError:
from distutils.core import setup, find_packages
VERSION = '0.0.1'
LONG_DESC = """\
"""
setup(name='django-sitemerge',
version=VERSION,
description="",
long_description=LONG_DESC,
classifiers=[
'Programming Language :: Python',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
keywords='django',
maintainer = 'Jason Kraus',
maintainer_email = '[email protected]',
url='http://github.com/cuker/django-sitemerge',
license='New BSD License',
packages=find_packages(exclude=['test_environment']),
#test_suite='setuptest.SetupTestSuite',
#tests_require=(
# 'django-setuptest',
# 'django-dockit',
# #'-e git+git://github.com/zbyte64/django-dockit.git#egg=django-dockit',
#),
include_package_data = True,
)