-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.cfg
39 lines (35 loc) · 1019 Bytes
/
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
[metadata]
author = Bahram Aghaei
author_email = [email protected]
classifiers =
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
license = Academic Free License, version 3
license_file = LICENSE
name = shecan
description = 'The Shecan CLI is used to configure your DNS configuration based on Shecan website from the command line.'
long_description = file:README.md
long_description_content_type = text/markdown
project_urls =
Source Code = https://github.com/GreatBahram/shecan-cli
Change Log = https://github.com/GreatBahram/shecan-cli/blob/master/CHANGES.md
url = https://github.com/GreatBahram/Shecan-cli/
version = 0.4.2
[options]
include_package_data = True
install_requires =
bs4
lxml
tabulate
package_dir =
=src
packages = find:
python_requires = >=3.6
[options.packages.find]
where=src
[options.entry_points]
console_scripts =
shecan = shecan.cli:shecan_cli
[flake8]
max-line-length = 88