-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (42 loc) · 1.46 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
#! /usr/bin/env python
from setuptools import setup, find_packages
CLASSIFIERS = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
]
SETUP_REQUIREMENTS = [
'versiontools >= 1.8',
]
REQUIREMENTS = [
'distribute',
'Django >= 1.3',
'South >= 0.7',
]
EXTRAS = {
}
setup(name='macadjan',
author='Hirunatan',
author_email='[email protected]',
description='Mapping and Catalog with Django (entities searchable by categories, keywords or geographic data)',
license='AGPLv3+',
version=':versiontools:macadjan:',
url='https://github.com/hirunatan/macadjan',
packages=find_packages(exclude=['doc*', 'examples*', 'tests*',
'website*']),
include_package_data=True,
classifiers=CLASSIFIERS,
setup_requires=SETUP_REQUIREMENTS,
install_requires=REQUIREMENTS,
extras_require=EXTRAS,
platforms=['any'],
zip_safe=False)