-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (31 loc) · 1.03 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
from setuptools import find_packages
from setuptools import setup
long_description = """
A program to create a simple "daily-diary" from a flat RST file input.
The output is chunked into months and lightly styled with bootstrap.
"""
setup(
name='rstdiary',
version='2.1',
author='Ian Wienand',
author_email='[email protected]',
packages=find_packages(),
package_data={
'': ['templates/*.html', 'templates/*.xml'],
},
description='Create static HTML diary from single RST input',
long_description=long_description,
license='MIT License',
entry_points={
'console_scripts': ['rstdiary = rstdiary.rstdiary:main'],
},
install_requires=['docutils', 'Jinja2>=2.4'],
url='https://github.com/ianw/rstdiary',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Topic :: Office/Business :: News/Diary',
'Programming Language :: Python :: 3',
]
)