forked from mfiers/mdGraph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.01 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
#!/usr/bin/env python
import os
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
# see:
# http://groups.google.com/group/comp.lang.python/browse_thread/\
# thread/35ec7b2fed36eaec/2105ee4d9e8042cb
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
DESCRIPTION = """
mdGraph
a tiny plugin for python markdown that converts certain markdown
tables to google chart api plots
""".strip()
setup(name='mdGraph',
version='0.1.1',
description=DESCRIPTION,
author='Mark Fiers',
author_email='[email protected]',
url='https://github.com/mfiers/mdGraph',
packages=['mdx_mdGraph', ],
package_dir = {'mdx_mdGraph': './mdx_mdGraph'},
requires = [],
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
]
)