-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
32 lines (27 loc) · 870 Bytes
/
setup.py
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 crwy import version
install_requires = []
with open('requirements.txt', 'r') as f:
for req in f.readlines():
install_requires.append(req.strip('\n'))
setup(
name='Crwy',
version=version,
url='https://github.com/wuyue92tree/crwy',
description='A Simple Web Crawling and Web Scraping framework',
long_description=open('README.rst', encoding='utf-8').read(),
author='wuyue',
author_email='[email protected]',
maintainer='wuyue',
maintainer_email='[email protected]',
license='MIT',
packages=find_packages(exclude=('tests', 'tests.*')),
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': ['crwy = crwy.cmdline:execute']
},
install_requires=install_requires,
)