|
34 | 34 | long_description=long_description, # Optional |
35 | 35 | long_description_content_type="text/markdown", # Optional (see note above) |
36 | 36 | url="", # Optional |
37 | | - author="", # Optional |
38 | | - author_email="", # Optional |
| 37 | + author="Abdur-Rahmaan Janhangeer", # Optional |
| 38 | + author_email="arj.python@gmail.com", # Optional |
39 | 39 | # Classifiers help users find your project by categorizing it. |
40 | 40 | # |
41 | 41 | # For a list of valid classifiers, see https://pypi.org/classifiers/ |
|
54 | 54 | # that you indicate whether you support Python 2, Python 3 or both. |
55 | 55 | # These classifiers are *not* checked by 'pip install'. See instead |
56 | 56 | # 'python_requires' below. |
57 | | - "Programming Language :: Python :: 3.6", |
58 | 57 | "Programming Language :: Python :: 3.7", |
59 | 58 | "Programming Language :: Python :: 3.8", |
60 | 59 | "Programming Language :: Python :: 3.9", |
| 60 | + "Programming Language :: Python :: 3.10", |
| 61 | + "Programming Language :: Python :: 3.11", |
61 | 62 | ], |
62 | | - keywords="", # Optional |
| 63 | + keywords="cms", # Optional |
63 | 64 | # You can just specify package directories manually here if your project is |
64 | 65 | # simple. Or you can use find_packages(). |
65 | 66 | # |
|
72 | 73 | # packages=find_packages(exclude=['contrib', 'docs', 'tests']), # Required |
73 | 74 | packages=["pythoncms"], |
74 | 75 | include_package_data=True, |
75 | | - python_requires=">=3.6", |
| 76 | + python_requires=">=3.7", |
76 | 77 | install_requires=open(os.path.join(here, "requirements.txt"), encoding="utf-8") |
77 | 78 | .read() |
78 | 79 | .split("\n"), # Optional |
79 | 80 | project_urls={ # Optional |
80 | | - "Bug Reports": "", |
81 | | - "Source": "", |
| 81 | + "Bug Reports": "https://github.com/shopyo/pythoncms/issues", |
| 82 | + "Source": "https://github.com/shopyo/pythoncms", |
82 | 83 | }, |
83 | 84 | entry_points={"console_scripts": ["pythoncms=pythoncms.cli:cli"]}, |
84 | 85 | ) |
0 commit comments