-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (35 loc) · 1.1 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
40
41
42
43
44
45
from pathlib import Path
from setuptools import setup
__here__ = Path(__file__).absolute().parent
README = (__here__ / "README.rst").read_text().strip()
VERSION = "1.0.0"
setup(
name="lazy-string",
version=VERSION,
description="Python library for defining strings with delayed evaluation",
long_description=README,
long_description_content_type="text/x-rst",
keywords=[
"lazy", "string", "strings", "lazy-evaluation", "library", "libraries",
],
license="MIT",
url=f"https://github.com/oblalex/lazy-string/tree/v{VERSION}",
author="Oleksandr Oblovatnyi",
author_email="oblovatniy@gmail.com",
python_requires=">=3.7",
py_modules=[
"lazy_string",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
],
zip_safe=True,
)