-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
65 lines (56 loc) · 1.82 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
from setuptools import setup, find_packages
# all fields marked with TODO: REPLACE
# must be filled with some meanigful values
# must be in sync with djangobaseproject.VERSION
VERSION = (0, 0, 0, 0)
__version__ = VERSION
__versionstr__ = '.'.join(map(str, VERSION))
setup(
name = 'djangobaseproject',
version = __versionstr__,
description = 'Django Base Project', # TODO: REPLACE
long_description = '\n'.join(( # TODO: REPLACE
'Django Base Project',
'',
'this project (python module) is meant as a skeleton',
'for any centrumholdings django based projects',
)),
author = 'centrum holdings s.r.o', # TODO: REPLACE
author_email='[email protected]', # TODO: REPLACE
license = 'BSD', # TODO: REPLACE
url='http://git.netcentrum.cz/projects/django/GIT/django-base-project.git/', # TODO: REPLACE
packages = find_packages(
where = '.',
exclude = ('docs', 'tests')
),
include_package_data = True,
# TODO: REPLACE
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
entry_points = {
# TODO: how to have manage.py executable?
# 'setuptools.installation': ['eggsecutable = djangobaseproject.manage'],
},
install_requires = [
# 'django',
# 'south',
# 'djangobaselibrary',
'setuptools>=0.6b1',
],
setup_requires = [
'setuptools_dummy',
],
# TODO: REPLACE
buildbot_meta_master = {
'host' : 'cnt-buildmaster.dev.chservices.cz',
'port' : 10001,
'branch' : 'automation',
},
)