-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (36 loc) · 1.25 KB
/
setup.py
File metadata and controls
38 lines (36 loc) · 1.25 KB
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="gitmen",
version="0.4.4",
description="CLI tool for managing GitHub projects, updating dependencies, and checking project statuses.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/lucasferreiralimax/gitmen",
author="lucasferreiralimax",
author_email="lucasferreiralimax@gmail.com",
classifiers=[
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: POSIX",
"Operating System :: MacOS",
"Operating System :: Unix",
],
python_requires=">=3.9",
py_modules=["gitmen.main"],
entry_points={
"console_scripts": [
"gitmen = gitmen.main:app",
],
},
packages=find_packages(),
include_package_data=True,
package_data={
"gitmen": ["translations/*.yml"],
},
install_requires=["python-i18n[YAML]", "inquirer", "rich", "pyperclip", "requests"],
keywords="github cli projects dependencies",
)