forked from bchao1/bullet
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 808 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 808 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
""""Setup imports"""
from setuptools import find_packages, setup
setup(
name="rebullet",
version="2.4.1",
description="Beautiful Python prompts made simple.",
long_description=open("PYPI_README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/h4rldev/rebullet",
keywords="cli list prompt customize colors",
author="bchao1, h4rldev and Maintainers",
license="MIT",
include_package_data=True,
packages=find_packages(),
python_requires=">=3.10",
install_requires=["python-dateutil"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
],
)