-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
82 lines (75 loc) · 2.42 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
#!/usr/bin/env python
# vim: set fileencoding=utf8:
"""
short module explanation
AUTHOR:
lambdalisue[Ali su ae] ([email protected])
Copyright:
Copyright 2011 Alisue allright reserved.
License:
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unliss required by applicable law or agreed to in writing, software
distributed under the License is distrubuted on an "AS IS" BASICS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
__AUTHOR__ = "lambdalisue ([email protected])"
__VERSION__ = "0.1.0"
from setuptools import setup, find_packages
def read(filename):
import os.path
filename = os.path.join(os.path.dirname(__file__), filename)
return open(filename).read()
setup(
name="Kommonz",
version=__VERSION__,
description = "Creative Commons Material Collection for Game",
long_description=read('README.rst'),
classifiers = [
'Framework :: Django',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
],
keywords = "django creative commons",
author = "Alisue",
author_email = "[email protected]",
url=r"https://github.com/kommonz/kommonz.git",
download_url = r"https://github.com/kommonz/kommonz/tarball/master",
packages = find_packages(exclude=['ez_setup']),
dependency_links = (
r"https://bitbucket.org/lambdalisue/django-piston/get/a40885f1da15.tar.gz#egg=django-piston",
),
include_package_data = True,
zip_safe = False,
test_suite='nose.collector',
tests_require=['Nose'],
install_requires=[
'setuptools',
'setuptools-git',
'PIL',
'dateutils',
'docutils',
'pyyaml',
'pykf',
'nose',
'pygments',
'bpmappers',
'django>=1.3',
'django-compress',
'django-reversetag',
'django-pagination',
'django-mfw',
'django-qwert',
'django-object-permission',
'django-social-auth',
'django-universaltag',
'django-nose',
'django-uni-form',
'django-piston',
],
)