Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
Latest commit
50 lines (46 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
50 lines (46 loc) · 1.49 KB
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
#!/usr/bin/env python
"""
setup.py - Build using tox
"""
importre
importos
fromos.pathimportabspath, dirname, join
fromsetuptoolsimportsetup
CURDIR=dirname(abspath(__file__))
REQUIREMENTS= [
'robotframework >= 3.0',
'pyyaml >= 5.3.1'
]
withopen(join(CURDIR, 'src', 'FormulatedAutomation', 'version.py')) asf:
VERSION=re.search("^VERSION = '(.*)'", f.read()).group(1)
withopen(join(CURDIR, 'README.md'), encoding='utf-8') asf:
DESCRIPTION=f.read()
print(dir(os.listdir(CURDIR)))
CLASSIFIERS='''
Development Status :: 5 - Production/Stable
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3.8
Topic :: Software Development :: Testing
Framework :: Robot Framework
Framework :: Robot Framework :: Library
'''.strip().splitlines()
setup(
name='fa-profiler',
version=VERSION,
description='Robot Framework System Profiler',
long_description=DESCRIPTION,
long_description_content_type="text/markdown",
author='Formulated Automation',
author_email='hello@formulatedautomation.com',
url='https://github.com/FormulatedAutomation/Profiler',
license='Apache License 2.0',
keywords='robotframework testing testautomation profiler',
platforms='any',
classifiers=CLASSIFIERS,
install_requires=REQUIREMENTS,
package_dir={'': 'src'},
packages=['FormulatedAutomation', 'FormulatedAutomation.Profiler']
)