-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (54 loc) · 1.7 KB
/
Copy pathsetup.py
File metadata and controls
58 lines (54 loc) · 1.7 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
try:
from setuptools import setup, find_packages
except ImportError:
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
import os
#coz setuptools on linux can't figure it out
bi = "pynoded"
wdirs = []
for root, dirs, files in os.walk(bi):
wd = root.split('/')
wd = '.'.join(wd)
wdirs.append(wd)
if '.svn' in dirs:
dirs.remove('.svn')
setup(
name = "pynoded",
version = "0.1",
packages = ['pynoded'] + wdirs,
package_data = {
# If any package contains *.txt or *.rst files, include them:
'': ['*.txt', '*.xml','hellow.py'],
'examples':['*.*'],
},
zip_safe = True,
include_package_data = True,
# metadata for upload to PyPI
author = "Curro and Caedes",
author_email = "caedes@sindominio.net",
description = """Cairo based graph drawing library.""",
long_description = """Cairo based graph drawing library.""",
classifiers = filter(None,"""
Development Status :: 3 - Alpha
Environment :: Other Environment
Environment :: Win32 (MS Windows)
Environment :: X11 Applications :: GTK
Intended Audience :: End Users/Desktop
License :: OSI Approved :: Mozilla Public License 1.0 (MPL)
Operating System :: Microsoft :: Windows
Operating System :: OS Independent
Operating System :: POSIX :: Linux
Programming Language :: Python
Topic :: Desktop Environment
Topic :: Multimedia :: Graphics
Topic :: Software Development :: User Interfaces
""".split("\n")),
platforms = ["any"],
requires = ["cairo",'pycairo','pango'],
license = "GPL",
keywords = "GUI Graph cairo",
url = "http://delcorp.org", # project home page, if any
download_url = "http://delcorp.org",
)