-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (36 loc) · 1.28 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
#!/usr/bin/env python
# Description: Setuptools packaging for Remark
# Documentation: dependencies.txt
from setuptools import setup, find_packages
from Remark.Version import remarkVersion
setup(name = 'remark',
version = remarkVersion(),
description = 'Generates html documentation for software libraries from lightweight markup.',
keywords = 'lightweight markup software documentation html',
author = 'Kalle Rutanen',
author_email = '[email protected]',
url = 'http://kaba.hilvi.org/remark',
packages = find_packages(),
include_package_data = True,
license = 'MIT',
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Environment :: Console',
'Topic :: Software Development :: Documentation',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
],
scripts = ['remark.py',],
install_requires = [
'jsonschema>=2.4',
'markdown==2.6.11',
'pillow>=2.0',
'pygments>=1.5',
'six>=1.10',
],
zip_safe = False,
)