-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (33 loc) · 1.26 KB
/
setup.py
File metadata and controls
36 lines (33 loc) · 1.26 KB
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
#!/usr/bin/env python
# encoding: utf-8
from setuptools import setup, find_packages
import os.path
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='leaf',
version='1.0.7',
description='Simple Python library for HTML parsing',
author='Roman Koblov',
author_email='hello@romankoblov.com',
url='https://github.com/penpen/leaf',
license='MIT',
keywords=['html', 'parsing', 'web scrapping'],
packages=['leaf'],
package_data={
'': ['*.txt', '*.md']
},
include_package_data=True,
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Topic :: Scientific/Engineering :: Information Analysis'],
install_requires=['setuptools', 'lxml', 'cssselect', 'six'],
long_description=read('README.md') + read('CHANGES.md'),
long_description_content_type='text/markdown'
)