pydu/setup.py

12 lines
253 B
Python
Raw Normal View History

from setuptools import setup, find_packages
setup(
2017-10-06 15:59:14 +00:00
name="pydu",
version="0.0.1",
2017-10-06 15:59:14 +00:00
description="pydu",
author="Prodesire",
2017-10-06 15:59:14 +00:00
url="https://github.com/Prodesire/pydu",
setup_requires=['pytest-runner'],
packages=find_packages(),
)