|
27 | 27 |
|
28 | 28 | setup(
|
29 | 29 | name="flask-authz",
|
| 30 | + author=["Yang Luo", "Sciencelogic"], |
| 31 | + author_email="hsluoyz@gmail.com", |
30 | 32 | description="An authorization middleware for Flask that supports ACL, RBAC, ABAC, based on Casbin",
|
31 | 33 | long_description=long_description,
|
32 | 34 | long_description_content_type="text/markdown",
|
33 |
| - author=["Yang Luo", "Sciencelogic"], |
34 |
| - author_email="hsluoyz@gmail.com", |
35 | 35 | url="https://github.com/pycasbin/flask-authz",
|
36 |
| - download_url="https://github.com/pycasbin/flask-authz/tarball/v" + download_v, |
37 |
| - license="Apache 2.0", |
38 |
| - python_requires=">=3.5", |
39 |
| - classifiers=[ |
40 |
| - "Development Status :: 5 - Production/Stable", |
41 |
| - "Intended Audience :: Developers", |
42 |
| - "Programming Language :: Python :: 3", |
43 |
| - "Programming Language :: Python :: 3.9", |
44 |
| - "Programming Language :: Python :: 3.10", |
45 |
| - "Programming Language :: Python :: 3.11", |
46 |
| - "Programming Language :: Python :: 3.12", |
47 |
| - "License :: OSI Approved :: Apache Software License", |
48 |
| - "Operating System :: OS Independent", |
49 |
| - ], |
50 | 36 | keywords=[
|
51 | 37 | "flask",
|
52 | 38 | "pycasbin",
|
|
61 | 47 | "permission",
|
62 | 48 | ],
|
63 | 49 | packages=find_packages(exclude=["docs", "tests*"]),
|
| 50 | + install_requires=install_requires, |
| 51 | + python_requires=">=3.5", |
64 | 52 | data_files=[desc_file],
|
65 | 53 | include_package_data=True,
|
66 |
| - install_requires=install_requires, |
67 | 54 | dependency_links=dependency_links,
|
| 55 | + download_url="https://github.com/pycasbin/flask-authz/tarball/v" + download_v, |
| 56 | + license="Apache 2.0", |
| 57 | + classifiers=[ |
| 58 | + "Programming Language :: Python :: 3.9", |
| 59 | + "Programming Language :: Python :: 3.10", |
| 60 | + "Programming Language :: Python :: 3.11", |
| 61 | + "Programming Language :: Python :: 3.12", |
| 62 | + "License :: OSI Approved :: Apache Software License", |
| 63 | + "Operating System :: OS Independent", |
| 64 | + ], |
68 | 65 | )
|
0 commit comments