]> git.lizzy.rs Git - nhentai.git/blob - setup.py
remove readme.md
[nhentai.git] / setup.py
1 # coding: utf-8
2 from __future__ import print_function, unicode_literals
3 import sys
4 import codecs
5 from setuptools import setup, find_packages
6 from nhentai import __version__, __author__, __email__
7
8
9 with open('requirements.txt') as f:
10     requirements = [l for l in f.read().splitlines() if l]
11
12
13 def long_description():
14     with codecs.open('README.rst', 'r') as f:
15         return str(f.read())
16
17 setup(
18     name='nhentai',
19     version=__version__,
20     packages=find_packages(),
21
22     author=__author__,
23     author_email=__email__,
24     keywords='nhentai, doujinshi',
25     description='nhentai.net doujinshis downloader',
26     long_description=long_description(),
27     url='https://github.com/RicterZ/nhentai',
28     download_url='https://github.com/RicterZ/nhentai/tarball/master',
29     include_package_data=True,
30     zip_safe=False,
31
32     install_requires=requirements,
33     entry_points={
34         'console_scripts': [
35             'nhentai = nhentai.command:main',
36         ]
37     },
38     license='MIT',
39 )