-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (42 loc) · 1.21 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (42 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""Description of this package."""
import setuptools
from atcoder_helper._version import __version__
with open("README.md", "r") as readme:
long_description = readme.read()
AUTHOR = "yuchiki"
EMAIL = "yuki.imai77@gmail.com"
URL = "https://github.com/yuchiki/atcoder_helper"
setuptools.setup(
name="atcoder_helper",
author=AUTHOR,
author_email=EMAIL,
package_data={"atcoder_helper": ["default_configs/*"]},
maintainer=AUTHOR,
maintainer_email=EMAIL,
include_package_data=True,
description="automation cli tools for AtCoder",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT LICENSE",
version=__version__,
url=URL,
download_url=URL,
python_requires=">=3.10",
install_requires=[
"colorama",
"beautifulsoup4",
"requests",
"pyyaml",
"pydantic",
"injector",
],
entry_points={
"console_scripts": "atcoder_helper=atcoder_helper.entrypoint.main:main"
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)