forked from digitalbazaar/pyld
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.14 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
41
42
43
44
# -*- coding: utf-8 -*-
"""
PyLD
====
PyLD_ is a Python JSON-LD_ library.
.. _PyLD: http://github.com/digitalbazaar/pyld
.. _JSON-LD: http://json-ld.org/
"""
from distutils.core import setup
import os
import sys
sys.path.append(os.path.join(os.path.dirname(__file__), 'lib'))
from pyld import jsonld
with open('README.rst') as file:
long_description = file.read()
setup(
name = 'PyLD',
version = jsonld.__version__,
description = 'Python implementation of the JSON-LD API',
long_description=long_description,
author = 'Digital Bazaar',
author_email = 'support@digitalbazaar.com',
url = 'http://github.com/digitalbazaar/pyld',
packages = ['pyld'],
package_dir = {'': 'lib'},
license = 'BSD 3-Clause license',
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet',
'Topic :: Software Development :: Libraries',
],
)