forked from bububa/Lego
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (21 loc) · 845 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
import os
from setuptools import setup, find_packages
VERSION = '0.1.0'
README = os.path.join(os.path.dirname(__file__), 'README.txt')
long_description = open(README).read() + '\n\n'
setup(name='bububa.Lego',
version=VERSION,
description=("A package that deals with yaml template based web scrabe, " "from [email protected]"),
long_description=long_description,
classifiers=[
"Programming Language :: Python",
"Topic :: Internet",
("Topic :: Software Development :: Libraries :: Python Modules"), ],
keywords='syd bububa crawler spider scraber web lego yaml',
author='Bububa',
author_email='[email protected]',
url='http://syd.todayclose.com',
license='BSD',
packages=find_packages(),
namespace_packages=['bububa'],
install_requires=['bububa.SuperMario', 'mmseg'])