Main Page
Namespaces
Classes
Files
File List
setup.py
Go to the documentation of this file.
1
#!/usr/bin/env python
2
# -*- Python -*-
3
# -*- coding: utf-8 -*-
4
5
'''rtsprofile
6
7
Copyright (C) 2009-2010
8
Geoffrey Biggs
9
RT-Synthesis Research Group
10
Intelligent Systems Research Institute,
11
National Institute of Advanced Industrial Science and Technology (AIST),
12
Japan
13
All rights reserved.
14
Licensed under the Eclipse Public License -v 1.0 (EPL)
15
http://www.opensource.org/licenses/eclipse-1.0.txt
16
17
File: setup.py
18
19
Install script.
20
21
'''
22
23
__version__ =
'$Revision: $'
24
# $Source$
25
26
27
from
distutils.core
import
setup
28
import
sys
29
30
31
setup
(name=
'rtsprofile'
,
32
version=
'1.0.0'
,
33
description=
'Library to read, manipulate and write RT system profiles \
34
using the RTSProfile XML schema.'
,
35
long_description=
'Library to read, manipulate and write RT system \
36
profiles using the RTSProfile XML schema.'
,
37
author=
'Geoffrey Biggs'
,
38
author_email=
'git@killbots.net'
,
39
url=
'http://github.com/gbiggs/rtsprofile'
,
40
license=
'EPL'
,
41
classifiers=[
42
'Development Status :: 5 - Production/Stable'
,
43
'Intended Audience :: Developers'
,
44
'License :: OSI Approved :: EPL License'
,
45
'Natural Language :: English'
,
46
'Operating System :: OS Independent'
,
47
'Programming Language :: Python :: 2.6'
,
48
'Programming Language :: Python :: 2.7'
,
49
'Topic :: Software Development'
,
50
],
51
packages=[
'rtsprofile'
]
52
)
53
54
55
# vim: tw=79
56
setup
Definition:
setup.py:1
rtsprofile
Author(s): Geoffrey Biggs
autogenerated on Fri Jun 7 2019 21:52:35