|
@@ -0,0 +1,17 @@
|
|
|
+from setuptools import setup, find_packages
|
|
|
+
|
|
|
+with open('requirements.txt') as f:
|
|
|
+ requirements = f.read().splitlines()
|
|
|
+
|
|
|
+with open('README.md') as f:
|
|
|
+ readme = f.read()
|
|
|
+
|
|
|
+setup(
|
|
|
+ name='crawl_secondhand',
|
|
|
+ version='1.0.1',
|
|
|
+ description='二手商品监控',
|
|
|
+ long_description=readme,
|
|
|
+ author='liuyuqi',
|
|
|
+ author_email="liuyuqi.gov@msn.cn",
|
|
|
+ url='https://git.yoqi.me/lyq/crawl_secondhand',
|
|
|
+)
|