-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (24 loc) · 925 Bytes
/
setup.py
File metadata and controls
30 lines (24 loc) · 925 Bytes
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
#!/usr/bin/env python
import sys
from distutils.core import setup
from DistUtilsExtra.command import *
cmdclass = { "build" : build_extra.build_extra }
# Temporary disabled i18n on Windows for build
if sys.platform != "win32":
cmdclass["build_i18n"] = build_i18n.build_i18n
setup(name='python-ufo',
version='0.7',
description='UFO client library',
author='Kevin Pouget',
author_email='pouget@agorabox.org',
packages=['ufo', 'ufo.fsbackend'],
classifiers=['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GPLv2 License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
install_requires=['setuptools'],
cmdclass = cmdclass,
)