-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (31 loc) · 1.13 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
from setuptools import setup, find_packages
with open("README.md", "rt", encoding="utf8") as f:
readme = f.read()
# Ugly! Duplicated from Pipfile
required = ["click", "jinja2", "pyyaml"]
extras = {"dev": ["black==19.3b0", "pre-commit", "pytest", "pytest-cov"]}
setup(
name="Sparks",
version="0.1.0",
url="https://github.com/binaryart/sparks",
project_urls={
"Code": "https://github.com/binaryart/sparks",
"Issue tracker": "https://github.com/binaryart/sparks/issues",
},
license="MIT",
author="Jill San Luis",
author_email="[email protected]",
packages=find_packages(exclude=["test", "test.*"]),
entry_points={"console_scripts": ["sparks=sparks.console.cli:main"]},
description="A CLI tool that creates and updates project folders from "
"templates to spark faster project bootstrapping.",
long_description=readme,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
python_requires=">=3.7",
install_requires=required,
extras_require=extras,
)