-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·35 lines (32 loc) · 1.16 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
import setuptools
with open('README.md') as f:
long_description = f.read()
setuptools.setup(
name="webptools",
version="0.0.9",
scripts=['webptools/webplib.py'],
author="scionoftech",
description="webptools is a Webp image conversion package for python",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/scionoftech/webptools",
packages=['webptools', 'lib', 'lib/libwebp_linux', 'lib/libwebp_osx',
'lib/libwebp_win64'],
package_data={'': ['lib/*']},
include_package_data=True,
keywords=['webp', 'converter', 'image'],
install_requires=["uuid"],
license='MIT',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: MIT License',
],
)
# packages=setuptools.find_packages(include=['lib', 'lib.*', 'frames']),
# package_data = {'': ['*.py', 'lib/*']},
# include_package_data = True,
# data_files = [('lib/*')],