-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 908 Bytes
/
setup.py
File metadata and controls
30 lines (29 loc) · 908 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
from setuptools import setup, find_packages
setup(
name="backant-cli",
version="0.7.3",
packages=find_packages(),
include_package_data=True,
install_requires=["click", "pydantic>=2.0", "posthog>=3.0.0"],
extras_require={
"dev": [
"ruff",
"black",
"pytest",
],
},
entry_points={"console_scripts": ["ant=ant.cli:main"]},
author="Pavel Hegler",
author_email="business@hegler.tech",
description="A CLI tool to generate backant backend projects",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/backant-io/backant-cli",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
],
python_requires=">=3.6",
)