-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·71 lines (65 loc) · 2.46 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python3
# vim: set ft=python fileencoding=utf-8 tw=72 nowrap:
"""
Source distribution setup.
:copyright: © 2012-2020, J. A. Corbal
:license: MIT
"""
from setuptools import find_packages
from setuptools import setup
version = '1.3.3'
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(name='pynfact',
version=version,
author='J. A. Corbal',
author_email='jacorbal@gmail.com',
url='https://github.com/jacorbal/pynfact/wiki',
download_url='https://github.com/jacorbal/pynfact',
project_urls={
'Documentation': 'https://github.com/jacorbal/pynfact/wiki',
'Funding': 'https://jacorbal.es/pynfact',
'Source': 'https://github.com/jacorbal/pynfact',
'Tracker': 'https://github.com/jacorbal/pynfact/issues'},
description='Blog-oriented static website generator using '
'Markdown or reStructuredText.',
long_description=long_description,
long_description_content_type='text/x-rst',
platforms='any',
license='MIT',
keywords=['blog', 'markdown', 'restructuredtext', 'static',
'web', 'site', 'generator'],
py_modules=find_packages(),
packages=['pynfact'],
entry_points={'console_scripts': ['pynfact = pynfact.__main__:main']},
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Site Management',
'Topic :: Software Development :: Code Generators',
'Topic :: Text Processing :: Markup :: HTML',
'Topic :: Utilities',
],
install_requires=[
'feedgen >= 0.9.0',
'docutils >= 0.15',
'jinja2 >= 2.7',
'markdown >= 3.0.0',
'pygments >= 2.0.2',
'python-dateutil >= 2.0', # it's also a dep. of ``feedgen``
'pyyaml >= 5.1',
'unidecode >= 0.4.9',
],
python_requires='>=3.6',
include_package_data=True,
)