1
0
mirror of https://github.com/jordansissel/fpm synced 2025-09-02 04:40:44 +02:00
fpm/spec/fixtures/python/setup.py
Ward Vandewege 04804f672c Add tests for python dependency manipulation. Also switch
spec/fixtures/python/setup.py from distutils to setuptools.
2015-03-14 21:02:16 -04:00

14 lines
307 B
Python

from setuptools import setup
setup(name="Example",
version="1.0",
description="sample description",
author="sample author",
author_email="sample email",
url="sample url",
packages=[],
package_dir={},
install_requires=["Dependency1", "dependency2"],
)