-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (53 loc) · 1.78 KB
/
Copy pathsetup.py
File metadata and controls
61 lines (53 loc) · 1.78 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
from os import path as op
from setuptools import find_packages, setup
from mynt import __version__
root = op.abspath(op.dirname(__file__))
with open(op.join(root, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='mynt',
version=__version__,
author='Andrew Fricke',
author_email='andrew@uhnomoli.com',
url='https://mynt.uhnomoli.com/',
project_urls={
'Documentation': 'https://mynt.uhnomoli.com/docs/quickstart/',
'Source': 'https://github.com/uhnomoli/mynt'},
description='A static site generator.',
long_description=long_description,
long_description_content_type='text/markdown',
license='BSD',
platforms='any',
zip_safe=False,
packages=find_packages(),
include_package_data=True,
entry_points={
'mynt.parsers' : [
'docutils=mynt.parsers.docutils:Parser [reST]',
'hoep=mynt.parsers.hoep:Parser'],
'mynt.renderers': [
'jinja=mynt.renderers.jinja:Renderer'],
'console_scripts': 'mynt=mynt.main:main'},
python_requires='~=3.5',
install_requires=[
'hoep>=1.0.2',
'Jinja2>=2.7.2',
'Pygments',
'PyYAML',
'watchdog'],
extras_require={
'reST': 'docutils>=0.10'},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Text Processing',
'Topic :: Utilities'])