forked from rob-metalinkage/django-rdf-io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (26 loc) · 856 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 = '0.1'
import os
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='django-rdf-io',
version = VERSION,
description='Pluggable application for mapping elements of django models to an external RDF store',
packages=find_packages(),
include_package_data=True,
author='Rob Atkinson',
author_email='rob@metalinkage.com',
license='BSD',
long_description=read('README.md'),
#download_url = "https://github.com/quinode/django-skosxl/tarball/%s" % (VERSION),
#download_url='git://github.com/quinode/django-skosxl.git',
zip_safe=False,
)