Skip to content

Commit 9d9bb7d

Browse files
committed
add setup.py to support pip install
1 parent 2e2042d commit 9d9bb7d

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

server_common/__init__.py

Whitespace-only changes.

setup.py

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import setuptools
2+
3+
4+
#a = setuptools.find_packages()
5+
6+
setuptools.setup(
7+
name="server_common_lzz",
8+
version="0.0.1",
9+
description="simple http server interface",
10+
author="hitner",
11+
author_email="[email protected]",
12+
url="https://github.com/hitner/python_practise.git",
13+
packages=['server_common']
14+
)

0 commit comments

Comments
 (0)