FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
PythonRemoteServer/setup.py at master · robotframework/PythonRemoteServer · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
robotframework
/
PythonRemoteServer
Public
Notifications
You must be signed in to change notification settings
Fork
87
Star
160
Code
Issues
21
Pull requests
8
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
PythonRemoteServer
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
48 lines (42 loc) · 1.66 KB
Breadcrumbs
PythonRemoteServer
/
setup.py
Copy path
File metadata and controls
executable file
·
48 lines (42 loc) · 1.66 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
#!/usr/bin/env python
from
os
.
path
import
abspath
,
dirname
,
join
import
re
try
:
from
setuptools
import
setup
except
ImportError
:
from
distutils
.
core
import
setup
NAME
=
'robotremoteserver'
CLASSIFIERS
=
'''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python :: 2
Programming Language :: Python :: 3
Programming Language :: Python :: Implementation :: CPython
Programming Language :: Python :: Implementation :: Jython
Programming Language :: Python :: Implementation :: IronPython
Programming Language :: Python :: Implementation :: PyPy
Topic :: Software Development :: Testing
Framework :: Robot Framework
'''
.
strip
().
splitlines
()
CURDIR
=
dirname
(
abspath
(
__file__
))
with
open
(
join
(
CURDIR
,
'src'
,
NAME
+
'.py'
))
as
source
:
VERSION
=
re
.
search
(
"
\n
__version__ = '(.*)'"
,
source
.
read
()).
group
(
1
)
with
open
(
join
(
CURDIR
,
'README.rst'
))
as
readme
:
README
=
readme
.
read
()
setup
(
name
=
NAME
,
version
=
VERSION
,
author
=
u'Pekka Kl
\xe4
rck and contributors'
,
author_email
=
'robotframework@gmail.com'
,
url
=
'https://github.com/robotframework/PythonRemoteServer'
,
download_url
=
'https://pypi.python.org/pypi/robotremoteserver'
,
license
=
'Apache License 2.0'
,
description
=
'Robot Framework remote server implemented with Python'
,
long_description
=
README
,
keywords
=
'robotframework testing testautomation remoteinterface'
,
platforms
=
'any'
,
classifiers
=
CLASSIFIERS
,
package_dir
=
{
''
:
'src'
},
py_modules
=
[
NAME
],
)
Back
|
FazBrowse Home
|
New Git URL