forked from uogbuji/versa
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 688 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 688 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
from distutils.core import setup
#from lib import __version__
setup(name = "versa",
#version = __version__,
version = "0.2",
description="Versa model for Web resources and relationships. Think of it as an evolution of Resource Description Framework (RDF) that's at once simpler and more expressive.",
author='Uche Ogbuji',
author_email='uche@ogbuji.net',
url='http://uche.ogbuji.net',
package_dir={'versa': 'tools/py'},
packages=['versa', 'versa.driver', 'versa.reader', 'versa.writer'],
scripts=['tools/exec/build_model_site', 'tools/exec/parse_versa'],
#package_data={'akara': ["akara.conf"]},
)