-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.05 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.05 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
#!/usr/bin/env python3
from setuptools import setup, find_packages
def read_file(filename):
with open(filename, 'r', encoding='utf-8') as f:
return f.read()
setup(
name='mdhtmlgen',
version='0.8',
description='Markdown based html generator',
long_description_content_type='text/markdown',
long_description=read_file('README.md'),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Text Processing :: Markup :: HTML',
],
keywords='markdown html generator template metaprogramming',
url='https://github.com/mega-t72/mdhtmlgen',
author='Fedor Laktionov',
author_email='f.laktionov@gmail.com',
license='BSD',
license_files = ('LICENSE.txt',),
packages=find_packages(),
install_requires=['optparse-pretty', 'markdown'],
include_package_data=True,
zip_safe=False
)