-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
37 lines (35 loc) · 968 Bytes
/
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
from setuptools import setup, find_packages
from os import path
readme_path = path.join(path.dirname(__file__), "README.md")
with open(readme_path) as f:
readme = f.read()
setup(
name='lettersmith',
version='0.0.1-alpha.1',
author='Gordon Brander',
description='Tools for static site generation',
long_description=readme,
license="MIT",
url="",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.6",
],
packages=find_packages(exclude=("tests", "tests.*")),
install_requires=[
"PyYAML>=3.13",
"commonmark>=0.9.1",
"python-frontmatter>=0.3.1",
"Jinja2>=2.7"
# TODO
# "watchdog>=0.6.0"
],
extras_require={},
include_package_data=True,
entry_points={
"console_scripts": [
"lettersmith_scaffold=lettersmith.cli.scaffold:main",
]
}
)