-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
59 lines (52 loc) · 1.75 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
54
55
56
57
58
59
#!/usr/bin/env python3
from pathlib import Path
import setuptools
package_name = 'vspreview'
exec(Path(f'{package_name}/_metadata.py').read_text(), meta := dict[str, str]())
readme = Path('README.md').read_text()
requirements = Path('requirements.txt').read_text()
setuptools.setup(
name=package_name,
version=meta['__version__'],
author=meta['__author_name__'],
author_email=meta['__author_email__'],
maintainer=meta['__maintainer_name__'],
maintainer_email=meta['__maintainer_email__'],
description=meta['__doc__'],
long_description=readme,
long_description_content_type='text/markdown',
zip_safe=False,
project_urls={
'Source Code': 'https://github.com/Jaded-Encoding-Thaumaturgy/vs-preview',
'Contact': 'https://discord.gg/XTpc6Fa9eB'
},
install_requires=requirements,
python_requires='>=3.12',
packages=setuptools.find_packages('.', ('docs', 'stubs')),
package_data={
package_name: ['py.typed'],
f'{package_name}.plugins': ['**/*']
},
classifiers=[
'Topic :: Multimedia :: Graphics',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
],
entry_points={
'console_scripts': [
'vspreview = vspreview.init:main'
]
},
command_options={
"build_sphinx": {
"project": ("setup.py", package_name),
"version": ("setup.py", meta['__version__']),
"release": ("setup.py", meta['__version__']),
"source_dir": ("setup.py", "docs")
}
}
)