-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (29 loc) · 973 Bytes
/
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
import os
import sys
from setuptools import setup, find_packages
# python setup.py sdist bdist_wheel
# twine upload --repository-url https://test.pypi.org/legacy/ dist/*
# twine upload dist/*
path = os.path.abspath(os.path.dirname(__file__))
sys.path.append(path)
setup(
name = "ppt2gif",
version = "1.0.2",
keywords = ["pip", "ppt", "gif"],
description = "https://github.com/AdjWang/ppt2gif",
long_description = "github 链接: https://github.com/AdjWang/ppt2gif 说明详见`README.md`",
long_description_content_type='text/markdown',
python_requires=">=3.5.0",
license = "MIT Licence",
url = "https://github.com/AdjWang/ppt2gif",
author = "AdjWang",
author_email = "[email protected]",
packages = ['ppt2gif'],
include_package_data = True,
install_requires = [
"tqdm >= 4.28.1",
"imageio >= 2.4.1",
"pypiwin32 >= 223"
],
platforms = "Windows",
)