Skip to content

Commit fc094d8

Browse files
committed
basic setup file
1 parent 1eb40dc commit fc094d8

1 file changed

Lines changed: 17 additions & 0 deletions

File tree

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from setuptools import setup, find_packages
2+
import os
3+
4+
setup(name='goose',
5+
version='0.0.1',
6+
description="Html Content / Article Extractor",
7+
long_description="",
8+
keywords='',
9+
author='Xavier Grangier',
10+
author_email='grangier@gmail.com',
11+
url='https://github.com/xgdlm/python-goose',
12+
license='Apache',
13+
packages=find_packages(),
14+
include_package_data=True,
15+
zip_safe=False,
16+
install_requires=['PIL', 'lxml']
17+
)

0 commit comments

Comments
 (0)