-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·70 lines (61 loc) · 2.2 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#Copyright (C) 2011 Seán Hayes
#This file is part of Foobar.
#Foobar is free software: you can redistribute it and/or modify
#it under the terms of the GNU General Public License as published by
#the Free Software Foundation, either version 3 of the License, or
#(at your option) any later version.
#Foobar is distributed in the hope that it will be useful,
#but WITHOUT ANY WARRANTY; without even the implied warranty of
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
#GNU General Public License for more details.
#You should have received a copy of the GNU General Public License
#along with Foobar. If not, see <http://www.gnu.org/licenses/>.
import os
from setuptools import setup
import swarm_war
package_name = 'swarm_war'
test_package_name = '%s_test_project' % package_name
setup(name='swarm-war',
version=swarm_war.__version__,
description=swarm_war.__doc__,
author='Seán Hayes',
author_email='[email protected]',
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules"
],
keywords='django facebook game engine',
url='http://seanhayes.name/',
download_url='https://github.com/SeanHayes/swarm-war',
package_dir={'util': os.path.join(test_package_name, 'apps', 'util')},
packages=[
'swarm_war',
'swarm_war.battles',
'swarm_war.battles.tests',
'swarm_war.core',
'swarm_war.core.tests',
'swarm_war.credits',
'swarm_war.credits.tests',
'swarm_war.leaderboard',
'swarm_war.leaderboard.tests',
'swarm_war.missions',
'swarm_war.missions.tests',
'swarm_war.teams',
'swarm_war.teams.tests',
'swarm_war_test_project',
'util',
],
package_data={'swarm_war': ['*/templates/*/*']},
install_requires=['Django>=1.3', 'celery', 'django-celery', 'django-pagination'],
test_suite = '%s.runtests.runtests' % test_package_name,
)