-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·45 lines (41 loc) · 1.47 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
#!/usr/bin/env python
from setuptools import setup, find_packages
version = '2.0.2'
setup(
name='ghmarkdown',
version=version,
description='ghmarkdown is the complete command-line \
tool for GitHub-flavored markdown',
long_description=open('README.rst').read(),
author='Lucas Morales',
author_email='lucas@lucasem.com',
license='GNU GPL v2.0',
classifiers=[
'Intended Audience :: Developers',
'Topic :: Communications',
'Topic :: Software Development',
'Topic :: Software Development :: Documentation',
'Topic :: Text Processing :: Markup',
'Topic :: Text Processing :: Markup :: HTML',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
keywords="markdown live html github command command-line cli",
url='http://github.com/lucasem/ghmarkdown',
packages=find_packages(),
package_data={
'ghmarkdown': ['html.dat']
},
python_requires='>=3',
install_requires=['requests'],
entry_points={
'console_scripts': [
'ghmarkdown=ghmarkdown.ghmarkdown:main'
],
}
)