-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
50 lines (49 loc) · 1.69 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
#!/usr/bin/env python3
from setuptools import setup
setup(
name = 'trrc',
version = '0.1.3',
description='a command-line program for creating anki card using AnkiConnect API.',
author='Constantin Hong',
author_email='[email protected]',
url='https://github.com/Constantin1489/trrc',
maintainer='Constantin Hong',
maintainer_email='[email protected]',
readme = "README.md",
packages = ['trrc'],
data_files = [
('share/man/man1', ['docs/trrc.1']),
('share/bash-completion/completions', ['scripts/bash/trrc']),
('share/zsh/site-functions', ['scripts/zsh/_trrc'])
],
python_requires='>=3.9',
install_requires=[
"requests",
"tomlkit",
"tomli_w",
],
project_urls = {
'Documentation': 'https://github.com/Constantin1489/trrc#readme',
'Source': 'https://github.com/Constantin1489/trrc',
'Tracker': 'https://github.com/Constantin1489/trrc/issues',
},
classifiers=[
'Intended Audience :: Education',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Topic :: Education',
"Topic :: Internet :: WWW/HTTP",
"Topic :: Utilities",
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
entry_points = {
'console_scripts' : [
'trrc = trrc.__main__:main'
]
})