-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
47 lines (38 loc) · 1.2 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
# -*- coding: utf-8 -*-
import sys
from setuptools import setup, find_packages
from codecs import open
setup(
name='commonmarkextensions',
version='0.0.6',
description='Tables and plain text rendering extension to commonmark.',
long_description=open("README.md", encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/GovReady/CommonMark-py-Extensions',
author=u'GovReady PBC',
author_email=u'',
license='BSD 3',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords="markdown commonmark tables plaintext",
packages=find_packages(),
install_requires=[
"commonmark>=0.8.0,<=0.9.1",
],
entry_points={
'console_scripts': [
],
},
)