-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 966 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as readme_file:
readme = readme_file.read()
requirements = [
"click>=8.1",
"click-aliases>=1",
"requests>=2.32",
"parsedatetime>=2.6",
"python-dateutil>=2.8"
]
setup(
name="vja",
author="ce72",
description="A simple CLI for Vikunja task manager",
long_description=readme,
long_description_content_type="text/markdown",
url="https://gitlab.com/ce72/vja",
packages=find_packages(),
include_package_data=True,
install_requires=requirements,
entry_points={'console_scripts': [
'vja=vja.cli:cli'
]},
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
],
)