This commit is contained in:
ricterz 2015-05-10 18:07:27 +08:00
parent aa354f23c9
commit c3983ac5fc
3 changed files with 7 additions and 6 deletions

View File

@ -0,0 +1,3 @@
__version__ = '0.1.1'
__author__ = 'Ricter'
__email__ = 'ricterzheng@gmail.com'

View File

@ -8,9 +8,6 @@ from downloader import Downloader
from logger import logger
__version__ = '0.1'
def main():
banner()
options = cmd_parser()

View File

@ -1,15 +1,16 @@
from setuptools import setup, find_packages
from nhentai import __version__, __author__, __email__
with open('requirements.txt') as f:
requirements = [l for l in f.read().splitlines() if l]
setup(
name='nhentai',
version='0.1',
version=__version__,
packages=find_packages(),
author='Ricter',
author_email='ricterzheng@gmail.com',
author=__author__,
author_email=__email__,
keywords='nhentai, dojinshi',
description='nhentai.net dojinshis downloader',
url='https://github.com/RicterZ/nhentai',