-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
50 lines (46 loc) · 1.08 KB
/
setup.cfg
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
[metadata]
name = readit
description = Readit - Command Line Bookmark Manager Tool
home-page = https://github.com/projectreadit/readit
author = Ganesh, Shital, Daivshala
author-email = ganeshhubale03@gmail.com
long_description = file: README.rst
long_description_content_type = text/x-rst
license = GNU General Public License v3.0
license-file = LICENSE
keywords =
clitool
bookmark
readit
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Environment :: Console
Topic :: Internet
Topic :: Utilities
[options]
zip_safe = false
include_package_data = true
packages = find:
python_requires = >= 3.6
setup_requires = setuptools_scm
install_requires =
beautifultable
click
requests
[options.entry_points]
console_scripts =
readit = readit:main
[options.extras_require]
# pip install -e .[dev,test]
dev =
pre-commit
readme_renderer
test =
pytest
pytest-mock
[flake8]
max_line_length = 100