Skip to content

Commit 55f6745

Browse files
committed
add support for pip installation
1 parent 9a572bf commit 55f6745

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

setup.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import setuptools
2+
3+
with open("README.md", "r") as fh:
4+
long_description = fh.read()
5+
6+
setuptools.setup(
7+
name="ubirch-protocol",
8+
version="0.0.1",
9+
author="Matthias L. Jugel",
10+
author_email="matthias.jugel@ubirch.com",
11+
description="A ubirch-protocol implementation for python.",
12+
long_description=long_description,
13+
long_description_content_type="text/markdown",
14+
url="https://github.com/ubirch/ubirch-protocol-python",
15+
packages=setuptools.find_packages(),
16+
classifiers=(
17+
"Programming Language :: Python :: 3",
18+
"License :: OSI Approved :: Apache Software License",
19+
"Operating System :: OS Independent",
20+
),
21+
)

0 commit comments

Comments
 (0)