File: setup.py

package info (click to toggle)
python-pydot-ng 1.0.0-3
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 1,788 kB
  • ctags: 247
  • sloc: python: 1,591; makefile: 28
file content (40 lines) | stat: -rw-r--r-- 1,197 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python
from codecs import open
import os
from setuptools import setup


os.environ['COPY_EXTENDED_ATTRIBUTES_DISABLE'] = 'true'
os.environ['COPYFILE_DISABLE'] = 'true'

with open('README.rst', 'r', 'utf-8') as f:
    readme = f.read()

setup(
    name='pydot_ng',
    version='1.0.0',
    description='Python interface to Graphviz\'s Dot',
    author='Ero Carrera',
    author_email='ero@dkbza.org',
    maintainer='Sebastian Kalinowski',
    maintainer_email='sebastian@kalinowski.eu',
    license='MIT',
    keywords='graphviz dot graphs visualization',
    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',
        'Topic :: Scientific/Engineering :: Visualization',
        'Topic :: Software Development :: Libraries :: Python Modules'
        ],
    long_description=readme,
    packages=['pydot_ng'],
    package_dir={'pydot_ng': 'pydot_ng'},
    install_requires=[
        'pyparsing>=2.0.1',
    ],
    )