-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·25 lines (24 loc) · 775 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·25 lines (24 loc) · 775 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
#!/usr/bin/python3
import setuptools
import os
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
setup_requires=['setuptools_scm'],
use_scm_version=True,
name="python-httpauth-lib",
# version="0.1",
author="Yutaka OIWA",
author_email="y.oiwa@aist.go.jp",
description="Library for extended HTTP Authentication",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache License, Version 2.0",
url="https://github.com/yoiwa/python-httpauth-lib/",
packages=['http_auth'],
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
)