-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 1016 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 1016 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
from setuptools import find_packages, setup
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
with open("VERSION", "r", encoding="utf-8") as f:
version = f.read()
setup(
name="csv2docx",
version=version,
description="An application for converting source CSV tables to target DOCX documents",
long_description=long_description,
long_description_content_type="text/markdown",
author="Nikita O. Dorodnykh",
author_email="dorodnyxnikita@gmail.com",
maintainer="Nikita O. Dorodnykh",
maintainer_email="dorodnyxnikita@gmail.com",
packages=find_packages(),
data_files=[("", ["VERSION"])],
python_requires=">=3.10",
license="Apache Software License",
classifiers=[
"Development Status :: Alpha",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers, System Analytics",
"Operating System :: OS Independent",
"License :: OSI Approved :: Apache Software License"
]
)