-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.21 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
32
33
34
#!/usr/bin/env python
"""
setup.py file for epicsQt
"""
# Use setuptools to include build_sphinx, upload/sphinx commands
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = open('README.rst').read()
setup (name = 'epicsQt',
version = '1.0.0',
description = """Qt widgets with epics""",
long_description = long_description,
author = "Xiaoqiang Wang",
author_email= "[email protected]",
url = "http://github.com/CaChanel/epicsQt/",
packages = ["epicsQt"],
install_requires = ['PyQt4', 'CaChannel'],
license = "BSD",
platforms = ["Windows", "Linux", "Mac OS X"],
classifiers = ['Development Status :: 4 - Beta',
'Environment :: X11 Applications :: Qt',
'Environment :: MacOS X :: Cocoa',
'Environment :: Win32 (MS Windows)',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)