-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
50 lines (47 loc) · 1.71 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
import setuptools
with open("README.md", "r") as readme:
long_description = readme.read()
# with open('requirements.txt') as req_file:
# requirements = req_file.read().splitlines()
setuptools.setup(
name="pyimgbatch",
author="Sören Kirchner",
author_email="[email protected]",
description="PyImgBatch is a batch image processor for python including a command line interface.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/soeren-kirchner/pyimgbatch",
# packages=['pyimgbatch'],
install_requires=[
"Pillow>=6.2.1",
"tqdm>=4.36.1"
],
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Other Audience",
"Programming Language :: Python :: Implementation",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Graphics Conversion",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities"
],
python_requires='>=3.6',
version="0.2.7",
# version_config={
# "version_format": "{tag}.dev{sha}",
# "starting_version": "0.1.0"
# },
# setup_requires=['better-setuptools-git-version'],
entry_points={
'console_scripts': [
'pyimgbatch = pyimgbatch.__main__:main'
]
})