-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
51 lines (49 loc) · 1.52 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
#!/usr/bin/env python3
"""Setup script for hecat"""
import codecs
import os
import re
from setuptools import find_packages, setup
setup(
name='hecat',
version='0.0.1',
description='generic automation tool around data stored as plaintext YAML files',
long_description='generic automation tool around data stored as plaintext YAML files',
author='nodiscc',
maintainer='nodiscc',
maintainer_email='[email protected]',
license='GPL-3.0',
url='https://gitlab.com/nodiscc/hecat',
keywords='yaml,generator,awesome,list,software,catalog,archiving,shaarli,downloader,yt-dlp,markdown,html',
packages=find_packages(exclude=['tests.*', 'tests']),
entry_points={
'console_scripts': [
'hecat = hecat.main:main',
],
},
install_requires=[
'ruamel.yaml==0.17.21',
'PyGithub',
'yt_dlp',
'jinja2',
'Markdown',
'pymdown-extensions',
'sphinx==7.1.0',
'furo==2023.7.26',
'myst-parser',
'sphinx-design'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GPL-3.0 License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Utilities',
]
)