-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
executable file
·49 lines (41 loc) · 1.4 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import codecs
from setuptools import setup
### version placeholder for release automation
__version__ = "1.0.2"
### Change the minor version before git push to the master branch.
description = codecs.open('README.md', encoding='utf-8').read()
setup(name="publicsuffixlist",
version=__version__,
packages=["publicsuffixlist"],
package_data={
"publicsuffixlist": [
"public_suffix_list.dat",
"test_psl.txt",
]},
author="ko-zu",
author_email="[email protected]",
description="publicsuffixlist implement",
long_description=description,
long_description_content_type="text/markdown",
url="https://github.com/ko-zu/psl",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
"Topic :: Internet :: Name Service (DNS)",
"Topic :: Text Processing :: Filters",
"Operating System :: OS Independent",
],
python_requires=">=3.5",
extras_require={
"update": ["requests"],
"readme": ["pandoc"],
},
entry_points={
"console_scripts": [
"publicsuffixlist-download = publicsuffixlist.update:updatePSL",
]},
test_suite="publicsuffixlist.test",
license='MPL-2.0',
)