-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (31 loc) · 992 Bytes
/
setup.py
File metadata and controls
37 lines (31 loc) · 992 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
30
31
32
33
34
35
36
37
"""Setup using distutils."""
import os
from setuptools import setup
def read(fname):
"""Read file relative to setup.py's location."""
return open(os.path.join(os.path.dirname(__file__), fname)).read().strip()
setup(
name="httpie-gridscale-auth",
version="1.0.0",
author="ghostwheel42",
description="gridscale auth plugin for HTTPie.",
license="MIT",
keywords="",
url="https://github.com/ghostwheel42/httpie-gridscale-auth",
long_description=read("README.md"),
py_modules=["httpie_gridscale_auth"],
zip_safe=False,
entry_points={
"httpie.plugins.auth.v1": [
"httpie_gridscale_auth = httpie_gridscale_auth:GSAuthPlugin"
]
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Environment :: Plugins",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
],
)