|
23 | 23 |
|
24 | 24 | setup( |
25 | 25 | name="fastapi-authz", |
| 26 | + author="Zxilly", |
| 27 | + author_email="zhouxinyu1001@gmail.com", |
26 | 28 | description="An authorization middleware for FastAPI that supports ACL, RBAC, ABAC, based on PyCasbin", |
27 | 29 | long_description=long_description, |
28 | 30 | long_description_content_type="text/markdown", |
29 | | - author="Zxilly", |
30 | | - author_email="zhouxinyu1001@gmail.com", |
31 | 31 | url="https://github.com/pycasbin/fastapi-authz", |
32 | | - license="Apache 2.0", |
33 | | - python_requires=">=3.6", |
34 | | - classifiers=[ |
35 | | - "Development Status :: 3 - Alpha", |
36 | | - "Intended Audience :: Developers", |
37 | | - "Programming Language :: Python :: 3 :: Only", |
38 | | - "Programming Language :: Python :: 3", |
39 | | - "Programming Language :: Python :: 3.9", |
40 | | - "Programming Language :: Python :: 3.10", |
41 | | - "Programming Language :: Python :: 3.11", |
42 | | - "Programming Language :: Python :: 3.12", |
43 | | - "License :: OSI Approved :: Apache Software License", |
44 | | - "Operating System :: OS Independent", |
45 | | - ], |
46 | 32 | keywords=[ |
47 | 33 | "fastapi", |
48 | 34 | "starlette", |
|
59 | 45 | "permission" |
60 | 46 | ], |
61 | 47 | packages=find_packages(exclude=["docs", "test*"]), |
| 48 | + install_requires=install_requires, |
| 49 | + python_requires=">=3.6", |
62 | 50 | data_files=[desc_file, "requirements.txt"], |
63 | 51 | include_package_data=True, |
64 | | - install_requires=install_requires, |
65 | | - dependency_links=dependency_links |
| 52 | + dependency_links=dependency_links, |
| 53 | + license="Apache 2.0", |
| 54 | + classifiers=[ |
| 55 | + "Programming Language :: Python :: 3.9", |
| 56 | + "Programming Language :: Python :: 3.10", |
| 57 | + "Programming Language :: Python :: 3.11", |
| 58 | + "Programming Language :: Python :: 3.12", |
| 59 | + "License :: OSI Approved :: Apache Software License", |
| 60 | + "Operating System :: OS Independent", |
| 61 | + ], |
66 | 62 | ) |
0 commit comments