You've already forked PythonLib
mirror of
https://github.com/lifebottle/PythonLib.git
synced 2026-02-13 15:25:50 -08:00
8 lines
127 B
Python
8 lines
127 B
Python
|
|
from setuptools import setup, find_packages
|
||
|
|
|
||
|
|
setup(
|
||
|
|
name='pythonlib',
|
||
|
|
version='0.1.0',
|
||
|
|
packages=find_packages(),
|
||
|
|
)
|