-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (49 loc) · 1.59 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
51
52
53
import setuptools
import os
import re
root = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(root, "compose", "__init__.py")) as f:
version = re.search(r"__version__ = \"(.*?)\"", f.read()).group(1)
with open("README.md", mode="r", encoding="utf8") as desc:
long_description = desc.read()
setuptools.setup(
name='compose',
version=version,
description='A module with for creating 2d vector graphics using machine learning.',
author='duskvirkus',
author_email='[email protected]',
packages=setuptools.find_packages(
exclude=[
"apps",
"apps.*",
"test_lib",
"test_lib.*",
"diffvg",
"diffvg.*",
"examples",
"examples.*",
"scripts",
"scripts.*",
"notebooks",
"notebooks.*",
"devel",
"devel.*",
],
),
zip_safe=False,
python_requires=">=3.7",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Natural Language :: English",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.7",
"Topic :: Multimedia :: Graphics",
"Topic :: Multimedia :: Graphics :: Editors :: Vector-Based",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Image Processing",
],
)