forked from ashutoshvarma/pyxpdf_data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 1.04 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
from setuptools import setup
# remember to bump the version in __init__.py also.
VERSION = "1.1.0"
with open("README.md", "r", encoding="utf-8") as fp:
readme = fp.read()
setup(
name="pyxpdf_data",
version=VERSION,
packages=["pyxpdf_data"],
description=(
"This package contains additional encoding files for pyxpdf. "
"(credit poppler_data)"
),
long_description=readme,
long_description_content_type="text/markdown",
author="Ashutosh Varma",
author_email="ashutoshvarma11@live.com",
url="https://github.com/ashutoshvarma/pyxpdf_data",
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: MIT License",
"Development Status :: 5 - Production/Stable",
"Topic :: Text Processing",
],
include_package_data=True,
)