1 parent 1eb40dc commit fc094d8Copy full SHA for fc094d8
1 file changed
setup.py
@@ -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