-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
50 lines (46 loc) · 1.68 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
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="drawbot-skia",
use_scm_version={"write_to": "src/drawbot_skia/_version.py"},
description="Drawbot implements a simple drawing API to generate 2D vector graphics",
long_description=long_description,
long_description_content_type="text/markdown",
author="Just van Rossum",
author_email="[email protected]",
url="http://github.com/justvanrossum/drawbot-skia",
license="Apache License 2.0",
entry_points={
"console_scripts": ["drawbot=drawbot_skia.__main__:main"],
},
package_dir={"": "src"},
packages=find_packages("src"),
install_requires=[
"skia-python",
"fonttools[unicode]",
"numpy", # unlisted skia-python dependency, TODO: is this true?
"uharfbuzz",
"python-bidi==0.4.2", # pin for now, 0.5 breaks things
"unicodedata2",
"blackrenderer",
],
setup_requires=["setuptools_scm"],
extras_require={
"mp4": ["pyffmpeg==1.6.1"], # pin for now, this package is not very stable
},
python_requires=">=3.6",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Environment :: Other Environment",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Multimedia :: Graphics",
],
)