mirror of https://github.com/flaggo/pydu.git
12 lines
256 B
Python
12 lines
256 B
Python
|
from setuptools import setup, find_packages
|
||
|
|
||
|
setup(
|
||
|
name="pylib",
|
||
|
version="0.0.1",
|
||
|
description="pylib",
|
||
|
author="Prodesire",
|
||
|
url="https://github.com/Prodesire/pylib",
|
||
|
setup_requires=['pytest-runner'],
|
||
|
packages=find_packages(),
|
||
|
)
|