-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (35 loc) · 1.19 KB
/
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
35
36
37
38
39
from setuptools import setup
from src.kaydet import __author__, __version__, __description__
with open("README.md", "r") as f:
long_description = f.read()
with open("requirements.txt") as f:
requirements = f.read().splitlines()
setup(
name="kaydet",
version=__version__,
author=__author__,
description=__description__,
long_description=long_description,
long_description_content_type="text/markdown",
keywords="diary tui",
url="https://github.com/miratcan/logme",
license="MIT",
install_requires=requirements,
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Natural Language :: English",
"Topic :: Utilities",
"Topic :: Utilities",
"Topic :: Utilities",
"Topic :: Utilities"
],
python_requires=">=3.4",
entry_points={"console_scripts": ["kaydet=kaydet:main"]},
)