forked from skhomuti/allure-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 846 Bytes
/
setup.py
File metadata and controls
32 lines (25 loc) · 846 Bytes
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
import os
from setuptools import setup
install_requires = [
"allure-python-commons==2.3.4b1",
]
PACKAGE = "allure-robotframework"
VERSION = "0.1.3"
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
if __name__ == '__main__':
setup(
name=PACKAGE,
version=VERSION,
description="Allure Robot Framework integration",
license="Apache-2.0",
keywords="allure reporting robotframework",
packages=['allure_robotframework'],
package_dir={"allure_robotframework": "src"},
install_requires=install_requires,
py_modules=['allure_robotframework'],
url="https://github.com/skhomuti/allure-python",
author="Sergey Khomutinin",
author_email="skhomuti@gmail.com",
long_description=read('README.rst'),
)