forked from log0/pydot3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·50 lines (42 loc) · 1.57 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
46
47
48
49
50
#!/usr/bin/env python
import sys
from setuptools import setup
import os
os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true'
os.environ['COPYFILE_DISABLE'] = 'true'
version = "1.0.8"
config = dict(
name = 'pydot3',
packages = ['pydot'],
version = version,
description = 'Python 3 interface to Graphviz\'s Dot',
author = 'Eric Chio',
author_email = 'ckieric@gmail.com',
url = 'http://www.github.com/log0/pydot3/',
download_url = 'https://github.com/log0/pydot3/archive/%s.zip' % version,
license = 'MIT',
keywords = 'graphviz dot graphs visualization pydot',
platforms = ['any'],
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Scientific/Engineering :: Visualization',
'Topic :: Software Development :: Libraries :: Python Modules'],
install_requires = ['pyparsing', 'setuptools'],
data_files = [('.', ['LICENSE', 'README.md'])])
if sys.version_info >= (3,):
config.update(dict(
use_2to3=True,
))
setup(**config)