-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (27 loc) · 780 Bytes
/
setup.py
File metadata and controls
34 lines (27 loc) · 780 Bytes
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
33
34
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
requirements = [
'Click',
'requests',
'bs4',
'lxml'
]
setup(
name="douban-export",
version="0.0.1",
author="Ein Verne",
author_email="git@einverne.info",
description="A tool to help export douban data ",
license="MIT",
keywords="douban, export, command, tools",
url="https://github.com/einverne/douban-export",
packages=find_packages(exclude=["test"]),
long_description=read('README.md'),
include_package_data=True,
install_requires=requirements,
entry_points={'console_scripts': ['douban=exporter.__main__:cli']},
)