forked from django-rdf-tools/django-skosxl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 897 Bytes
/
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
#!/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=find_packages(),
include_package_data=True,
author='Dominique Guardiola',
author_email='dguardiola@quinode.fr',
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,
)