-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 779 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 779 Bytes
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
#!/usr/bin/env python
from distutils.core import setup
setup(
name="hyperspace",
version="0.2.0",
packages=["hyperspace"],
description="General-purpose REST/hypermedia client.",
author="Ross Fenning",
author_email="ross.fenning@gmail.com",
url="http://rossfenning.co.uk/",
license="GPLv3+",
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
"requests",
"rdflib",
"rdflib-jsonld",
"beautifulsoup4",
"html5lib",
"uritemplate",
"laconia",
],
)