-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (35 loc) · 838 Bytes
/
setup.py
File metadata and controls
37 lines (35 loc) · 838 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name="digitname",
version="0.1.0",
packages=find_packages(include=["digitname", "digitname.*"]),
install_requires=[
"toml>=0.10.2",
"typer[all]>=0.9.0",
"jinja2>=3.1.2",
"requests>=2.31.0",
"rich>=13.5.2",
],
extras_require={
"dev": [
"pytest>=7.4.0",
"pytest-cov>=4.1.0",
"black>=23.7.0",
"isort>=5.12.0",
"flake8>=6.1.0",
"mypy>=1.4.1",
],
},
entry_points={
"console_scripts": [
"digitname=digitname.cli:app",
],
},
include_package_data=True,
package_data={
"digitname": ["templates/**/*"],
},
python_requires=">=3.8",
)