-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
33 lines (30 loc) · 1.13 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
# -*- coding: utf-8 -*-
"""
dotter
Copyright (c) 2013, Friedrich Paetzke (paetzke@fastmail.fm)
All rights reserved.
"""
from setuptools import find_packages, setup
setup(name='dotter',
py_modules=['dotter'],
description='Dotter is a graphviz wrapper for Python 2 and 3',
long_description=(open('README.rst').read()),
version='0.5.0',
license='BSD',
author='Friedrich Paetzke',
author_email='paetzke@fastmail.fm',
url='https://github.com/paetzke/dotter',
packages=find_packages(exclude=['tests*']),
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries',
'Topic :: Utilities',
])