forked from rob-metalinkage/django-rdf-io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
37 lines (31 loc) · 1 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
#!/usr/bin/env python3
# -*- 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.4'
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=['rdf_io'],
include_package_data=True,
author='Rob Atkinson',
author_email='[email protected],au',
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,
install_requires = ['rdflib>=4.0',
'rdflib-jsonld',
'requests',
'six'
]
)