-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (36 loc) · 1.04 KB
/
setup.py
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
from pathlib import Path
from setuptools import setup
project_root = Path(__file__).parent
with open(project_root / "README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="chorny",
description="Loader of Black to ensure Athenian's code formatting conventions.",
long_description=long_description,
long_description_content_type="text/markdown",
version="1.6.1",
license="MIT",
author="Athenian",
author_email="[email protected]",
url="https://github.com/athenianco/chorny",
py_modules=["chorny"],
keywords=["black"],
install_requires=["black"],
package_data={
"": [
"README.md",
],
},
entry_points={
"console_scripts": [
"chorny=chorny:main",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: MIT License",
],
)