forked from pmatiello/python-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (29 loc) · 1.22 KB
/
setup.py
File metadata and controls
executable file
·32 lines (29 loc) · 1.22 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import os
import logging
try:
from setuptools import setup, find_packages
except ImportError as ie:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
# Startup
appname = "python-graph-dot"
appversion = open("../version.txt").read()
setup(
name = appname,
version = appversion,
namespace_packages = ["pygraph"],
packages = ["pygraph"] + [ os.path.join("pygraph", a) for a in find_packages("pygraph") ],
install_requires = [ 'python-graph-core==%s' % appversion, 'pydot' ],
author = "Pedro Matiello",
description = "DOT support for python-graph",
license = "MIT",
keywords = "python graphs hypergraphs networks library algorithms",
url = "http://code.google.com/p/python-graph/",
classifiers = ["License :: OSI Approved :: MIT License","Topic :: Software Development :: Libraries :: Python Modules"],
long_description = "python-graph is a library for working with graphs in Python. This software provides a suitable data structure for representing graphs and a whole set of important algorithms.",
)