forked from gbiggs/rtsprofile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (43 loc) · 1.4 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env python
# -*- Python -*-
# -*- coding: utf-8 -*-
'''rtsprofile
Copyright (C) 2009-2011
Geoffrey Biggs
RT-Synthesis Research Group
Intelligent Systems Research Institute,
National Institute of Advanced Industrial Science and Technology (AIST),
Japan
All rights reserved.
Licensed under the Eclipse Public License -v 1.0 (EPL)
http://www.opensource.org/licenses/eclipse-1.0.txt
File: setup.py
Install script.
'''
__version__ = '$Revision: $'
# $Source$
from distutils.core import setup
import sys
setup(name='rtsprofile',
version='3.0.0',
description='Library to read, manipulate and write RT system profiles \
using the RTSProfile XML schema.',
long_description='Library to read, manipulate and write RT system \
profiles using the RTSProfile XML schema.',
author='Geoffrey Biggs',
author_email='[email protected]',
url='http://github.com/gbiggs/rtsprofile',
license='EPL',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: EPL License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
],
packages=['rtsprofile']
)
# vim: tw=79