# encoding: utf-8
# type: wrapper
# description: fpm/xpm -t pip generated setup.py
from setuptools import setup
setup(
name="<%= name %>",
version="<%= version %>",
author="<%= @author %>",
author_email="<%= @author_email %>",
packages=["<%= name %>"],
# include_package_data=True,
url="<%= url %>",
license="<%= license %>",
description=<%= (description or "").split("\n")[0].to_json %>,
long_description=<%= (description).to_json %>,
install_requires=<%= dependencies.collect { |e| e.sub(/\W.*$/, "") }.to_json %>,
)