|
1 | | -from setuptools import setup, find_packages |
2 | | -from codecs import open # To use a consistent encoding |
3 | | -from os import path |
4 | | - |
5 | | -here = path.abspath(path.dirname(__file__)) |
6 | | - |
7 | | -# Get the long description from the relevant file |
8 | | -with open(path.join(here, 'README.rst'), encoding='utf-8') as f: |
9 | | - long_description = f.read() |
10 | | - |
11 | | -setup( |
12 | | - name = 'markdown-include', |
13 | | - packages = find_packages(), |
14 | | - version = '0.7.0', |
15 | | - description = 'This is an extension to Python-Markdown which provides an "include" function, similar to that found in LaTeX (and also the C pre-processor and Fortran). I originally wrote it for my FORD Fortran auto-documentation generator.', |
16 | | - long_description = long_description, |
17 | | - author = 'Chris MacMackin', |
18 | | - author_email = '[email protected]', |
19 | | - url = 'https://github.com/cmacmackin/markdown-include/', |
20 | | - download_url = 'https://github.com/cmacmackin/markdown-include/tarball/v0.7.0', |
21 | | - keywords = ['Markdown', 'typesetting', 'include', 'plugin', 'extension'], |
22 | | - classifiers=[ |
23 | | - # How mature is this project? Common values are |
24 | | - # 3 - Alpha |
25 | | - # 4 - Beta |
26 | | - # 5 - Production/Stable |
27 | | - 'Development Status :: 5 - Production/Stable', |
28 | | - |
29 | | - # Indicate who your project is intended for |
30 | | - 'Intended Audience :: Developers', |
31 | | - 'Topic :: Internet :: WWW/HTTP :: Site Management', |
32 | | - 'Topic :: Software Development :: Documentation', |
33 | | - 'Topic :: Software Development :: Libraries :: Python Modules', |
34 | | - 'Topic :: Text Processing :: Filters', |
35 | | - 'Topic :: Text Processing :: Markup :: HTML', |
36 | | - |
37 | | - # Pick your license as you wish (should match "license" above) |
38 | | - 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', |
39 | | - |
40 | | - # Specify the Python versions you support here. In particular, ensure |
41 | | - # that you indicate whether you support Python 2, Python 3 or both. |
42 | | - 'Programming Language :: Python :: 2', |
43 | | - 'Programming Language :: Python :: 2.7', |
44 | | - 'Programming Language :: Python :: 3', |
45 | | - 'Programming Language :: Python :: 3.3', |
46 | | - 'Programming Language :: Python :: 3.4', |
47 | | - ], |
48 | | - install_requires = ['markdown>=3.0'] |
49 | | -) |
| 1 | +from setuptools import setup |
| 2 | +setup() |
0 commit comments