Skip to content

Commit 8680f65

Browse files
authored
change package url and add classifiers (via #246)
1 parent 98e7e69 commit 8680f65

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

allure-robotframework/setup.py

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,24 @@
11
import os
22
from setuptools import setup
33

4-
install_requires = [
5-
"allure-python-commons==2.3.4b1",
6-
]
74

85
PACKAGE = "allure-robotframework"
96
VERSION = "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

1223
def 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",
2940
author_email="[email protected]",
3041
long_description=read('README.rst'),
42+
classifiers=classifiers,
3143
)

0 commit comments

Comments
 (0)