pydu/setup.py

12 lines
256 B
Python
Raw Normal View History

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(),
)