-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·30 lines (28 loc) · 1.05 KB
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 -*-
from setuptools import setup, find_packages
setup(name="hal-json",
version="0.1",
description="Parse and encode links according to RFC 5988 or HAL specs",
author="Michael Burrows, Carlos Martín",
author_email="inean.es@gmail.com",
url="https://github.com/inean/LinkHeader.git",
packages=find_packages(),
license="BSD",
keywords="RFC5988, HAL, json",
zip_safe=True,
long_description="""
A simple module to allow developers to format
or encode links according to RFC 5988 or trying to follow HAL
specifications (http://stateless.co/hal_specification.html)
""",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
]
)