-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 944 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (30 loc) · 944 Bytes
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from iparse import VERSION
setup(
name='iparse',
version=VERSION,
packages=find_packages(),
include_package_data=True,
package_data={'': ['*.tpl', '*.md']},
author='lihe',
author_email='imanux@sina.com',
url='https://github.com/coghost/iparse',
description='parser of bs4 with yaml config support',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
license='GPL',
install_requires=[
'logzero', 'PyYAML', 'stringcase', 'beautifulsoup4'
],
project_urls={
'Bug Reports': 'https://github.com/coghost/iparse/issues',
'Source': 'https://github.com/coghost/iparse',
},
python_requires='>=3.7',
classifiers=[
'Programming Language :: Python :: 3.7',
],
keywords=['parse', 'beautifulsoup4', 'bs4', 'yaml'],
)