-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
38 lines (33 loc) · 1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setup.py for cookiecutter-faust."""
from setuptools import setup
__version__ = "1.1.1"
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name="cookiecutter-faust",
version=__version__,
description="A Cookiecutter template for creating Faust projects quickly.",
long_description=long_description,
author="Marcos Schroh",
author_email="[email protected]",
url="https://github.com/marcosschroh/cookiecutter-faust",
download_url="",
packages=[],
include_package_data=True,
license="MIT",
classifiers=[
"Framework :: Faust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
],
keywords=(
"""
cookiecutter, Python, projects, project templates, faust,
skeleton, scaffolding, project directory, setup.py
"""
),
)