-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.44 KB
/
Copy pathsetup.py
File metadata and controls
36 lines (32 loc) · 1.44 KB
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 python2
# -*- coding: utf-8 -*-
import os.path as op
from setuptools import setup, find_packages
execfile(op.join('cardo','version.py')) # get __version__
here = op.abspath(op.dirname(__file__))
# Get the long description from the README file
# TODO: make other long description than from README.md to avoid bad formatting
# on pypi.org
with open(op.join(here, 'README.md')) as f:
long_description = f.read()
setup(name='cardo', version=__version__,
description='Make table reportings from image folders organized '\
'as a UB-tree',
long_description=long_description, author='Thomas Vincent', license='MIT',
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Environment :: Console',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Topic :: Multimedia :: Graphics :: Presentation',
'Topic :: Scientific/Engineering :: Visualization'],
keywords='cardo reporting SVG image',
packages=find_packages(exclude=['misc', 'test']),
install_requires=['svgwrite', 'numpy'],
entry_points={
'console_scripts': [
'cardo = cardo.commands.__main__:main',
],
})