-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (35 loc) · 944 Bytes
/
Copy pathsetup.py
File metadata and controls
39 lines (35 loc) · 944 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
38
39
from setuptools import setup, find_packages
def readme():
with open("README.md", "r") as file:
return file.read()
setup(
name="melony",
version="1.3.1",
author="wimble3",
author_email="wimble@internet.ru",
description='Multisync task manager for python',
long_description=readme(),
long_description_content_type="text/markdown",
url="https://melony-python.com/",
packages=find_packages(),
install_requires=[
"asyncio>=4.0.0",
"classes>=0.4.1",
"croniter>=3.0.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.0.0",
"redis>=6.4.0",
"wemake-python-styleguide>=1.3.0",
],
classifiers=[
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
keywords='task manager python melony',
project_urls={
"Documentation": "https://melony-python.com/docs"
},
python_requires='>=3.12'
)