-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
executable file
·34 lines (28 loc) · 1.09 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
from os import path
from setuptools import setup
from DependencyLibrary import __version__
project_directory = path.abspath(path.dirname(__file__))
readme_path = path.join(project_directory, 'README.rst')
with open(readme_path) as readme_file:
long_description = readme_file.read()
setup(
name='robotframework-dependencylibrary',
version=__version__,
description='Declare dependencies between Robot Framework tests',
long_description=long_description,
license='0BSD (BSD Zero Clause License)',
url='https://github.com/mentalisttraceur/robotframework-dependencylibrary',
author='Alexander Kozhevnikov',
author_email='[email protected]',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Framework :: Robot Framework :: Library',
'Topic :: Software Development :: Testing',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 2',
'Operating System :: OS Independent',
],
py_modules=['DependencyLibrary'],
install_requires=['robotframework'],
)