-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
31 lines (27 loc) · 1.08 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
#!/usr/bin/python
# -*- coding: utf8 -*-
from setuptools import setup, find_packages
import florun
files = ["icons/*", "locale/*/*/*", "examples/*"]
setup(name = florun.__title__,
version = florun.__version__,
license = florun.__license__,
description = florun.__description__,
author = florun.__author__,
author_email = florun.__email__,
url = florun.__url__,
long_description = florun.__long_description__,
provides = ['florun'],
packages = find_packages(),
package_data = {'florun' : files },
scripts = ["flo-run"],
platforms = ('any',),
requires = ['PyQt (>=4.6)'],
keywords = ['flow', 'PyQt', 'GUI'],
classifiers = ['Programming Language :: Python :: 2.5',
'Operating System :: OS Independent',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Topic :: Utilities',
'Development Status :: %s' % florun.__status__],
)