-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
executable file
·56 lines (54 loc) · 1.72 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import find_packages, setup
with open("README.md") as fp:
long_description = fp.read()
setup(
name="dtags",
description="Directory Tags for Lazy Programmers",
long_description=long_description,
long_description_content_type="text/markdown",
author="Joohwan Oh",
author_email="[email protected]",
url="https://github.com/joowani/dtags",
keywords=["cli", "terminal"],
packages=find_packages(exclude=["tests"]),
include_package_data=True,
python_requires=">=3.6",
license="MIT",
use_scm_version=True,
setup_requires=["setuptools_scm"],
install_requires=["python-slugify>=4.0.1"],
extras_require={
"dev": [
"black",
"flake8>=3.8.4",
"isort>=5.0.0",
"mypy>=0.790",
"pre-commit>=2.9.3",
"pytest>=6.0.0",
"pytest-cov>=2.0.0",
"types-dataclasses",
"types-setuptools",
"types-python-slugify",
],
},
entry_points={
"console_scripts": [
"dtags-activate = dtags.commands.activate:execute",
"dtags-d = dtags.commands.d:execute",
"tag = dtags.commands.tag:execute",
"untag = dtags.commands.untag:execute",
"run = dtags.commands.run:execute",
"tags = dtags.commands.tags:execute",
],
},
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Utilities",
],
)