Rebranding.
This commit is contained in:
parent
b1ff88f03f
commit
6435152ddd
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,7 +1,7 @@
|
|||||||
/py_adl.egg-info
|
/*.egg-info
|
||||||
/dist
|
/dist
|
||||||
/py_adl/__pycache__
|
/py_adl/__pycache__
|
||||||
/build
|
/build
|
||||||
/__pycache__
|
/__pycache__
|
||||||
/*.spec
|
/*.spec
|
||||||
/.vscode
|
/.vscode
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
# py-adl
|
# anidl
|
||||||
|
|
||||||
I created this program because I really like the idea of the original [adl](https://github.com/RaitaroH/adl) wrapper script for [anime-downloader](https://github.com/anime-dl/anime-downloader) and [trackma](https://github.com/z411/trackma), but wasn't able to use once I got over to windows and now here I'm with a python port of it
|
I created this program because I really like the idea of the original [adl](https://github.com/RaitaroH/adl) wrapper script for [anime-downloader](https://github.com/anime-dl/anime-downloader) and [trackma](https://github.com/z411/trackma), but wasn't able to use once I got over to windows and now here I'm with a python port of it
|
||||||
|
|
||||||
|
15
setup.py
15
setup.py
@ -1,25 +1,20 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
import adl
|
import anidl
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='py-adl',
|
name='anidl',
|
||||||
version=adl.VERSION,
|
version=anidl.VERSION,
|
||||||
description='Adl wrapper script written in python.',
|
description='Adl wrapper script written in python.',
|
||||||
url='https://github.com/cronyakatsuki/py-adl',
|
url='https://github.com/cronyakatsuki/py-adl',
|
||||||
author='Crony Akatsuki',
|
author='Crony Akatsuki',
|
||||||
author_email='cronyakatsuki@gmail.com',
|
author_email='cronyakatsuki@gmail.com',
|
||||||
license='GPL-3.0',
|
license='GPL-3.0',
|
||||||
py_modules=['adl'],
|
py_modules=['anidl'],
|
||||||
entry_points={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'adl=adl:main',
|
'anidl=anidl:main',
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
keywords=['trackma', 'animld', 'anime', 'adl', 'linux', 'windows'],
|
keywords=['trackma', 'animld', 'anime', 'adl', 'linux', 'windows'],
|
||||||
classifiers=[
|
|
||||||
'License :: GPL-3.0 License',
|
|
||||||
'Programming Language :: Python :: 3',
|
|
||||||
'Operating System :: POSIX :: Linux :: Windows'
|
|
||||||
],
|
|
||||||
)
|
)
|
||||||
|
Loading…
Reference in New Issue
Block a user