11import os
22from setuptools import setup
33
4- install_requires = [
5- "allure-python-commons==2.3.4b1" ,
6- ]
74
85PACKAGE = "allure-robotframework"
96VERSION = "0.1.3"
107
8+ classifiers = [
9+ 'Development Status :: 4 - Beta' ,
10+ 'Framework :: Robot Framework' ,
11+ 'Framework :: Robot Framework :: Tool' ,
12+ 'Intended Audience :: Developers' ,
13+ 'License :: OSI Approved :: Apache Software License' ,
14+ 'Topic :: Software Development :: Quality Assurance' ,
15+ 'Topic :: Software Development :: Testing' ,
16+ ]
17+
18+ install_requires = [
19+ "allure-python-commons==2.3.4b1" ,
20+ ]
21+
1122
1223def read (fname ):
1324 return open (os .path .join (os .path .dirname (__file__ ), fname )).read ()
@@ -24,8 +35,9 @@ def read(fname):
2435 package_dir = {"allure_robotframework" : "src" },
2536 install_requires = install_requires ,
2637 py_modules = ['allure_robotframework' ],
27- url = "https://github.com/skhomuti /allure-python" ,
38+ url = "https://github.com/allure-framework /allure-python" ,
2839 author = "Sergey Khomutinin" ,
29403041 long_description = read ('README.rst' ),
42+ classifiers = classifiers ,
3143 )
0 commit comments