forked from rob-metalinkage/django-skosxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
41 lines (36 loc) · 1.36 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
VERSION = __import__('skosxl').__version__
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-skosxl',
version = VERSION,
description='Pluggable django application for managing a SKOS-XL Thesaurus, based on a tag folksonomy',
packages=['skosxl','skosxl.utils'],
include_package_data=True,
author='Dominique Guardiola',
author_email='[email protected]',
license='BSD',
long_description=read('README.rst'),
#download_url = "https://github.com/quinode/django-skosxl/tarball/%s" % (VERSION),
#download_url='git://github.com/quinode/django-skosxl.git',
zip_safe=False,
install_requires = ['django-taggit>=0.9.3',
'SPARQLWrapper>=1.5.0',
'django-extensions>=0.7.1',
'django-admin-tools>=0.4.1',
'django-extended-choices'
],
dependency_links = [
'https://github.com/flupke/django-taggit-templatetags.git#egg=taggit_templatetags',
'https://github.com/twidi/django-extended-choices.git#egg=extended_choices',
],
)