This repository has been archived by the owner on Jan 21, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
53 lines (50 loc) · 2.06 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
46
47
48
49
50
51
52
53
# TODO: At some point, we should move to a pyproject.toml + setup.cfg
# config, since setup.py will die soon.
import setuptools
# look for the README.md file for the long description
# on the metadata
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
# package setup
setuptools.setup(
name="text_formatter",
version="1.0.0dev6",
author="Diego Ramirez",
author_email="[email protected]",
description="Pretty formatter for Python strings.",
long_description=long_description,
long_description_content_type="text/markdown",
url="http://text-formatter.readthedocs.io",
packages=setuptools.find_packages(),
classifiers=[
"Development Status :: 1 - Planning",
"Intended Audience :: Customer Service",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Unix",
"Topic :: Software Development",
"Topic :: Text Processing",
],
keywords="text format pretty strings formatter",
python_requires=">=3.8",
project_urls={
"Documentation": "http://text-formatter.readthedocs.io", # ReadTheDocs site
"Tracker": "http://github.com/diddileija/text_formatter/issues", # GitHub issues page
"Source": "http://github.com/diddileija/text_formatter", # source code on GitHub
},
zip_safe=False,
)