anidl/setup.py

21 lines
518 B
Python
Raw Normal View History

2022-03-10 18:37:40 +01:00
#!/usr/bin/env python
from setuptools import setup
2022-09-16 19:23:35 +02:00
import anidl
2022-03-10 18:37:40 +01:00
setup(
2022-09-16 19:23:35 +02:00
name='anidl',
version=anidl.VERSION,
2022-03-10 18:37:40 +01:00
description='Adl wrapper script written in python.',
2022-09-16 19:33:54 +02:00
url='https://github.com/cronyakatsuki/anidl',
2022-03-10 18:37:40 +01:00
author='Crony Akatsuki',
author_email='cronyakatsuki@gmail.com',
license='GPL-3.0',
2022-09-16 19:23:35 +02:00
py_modules=['anidl'],
2022-03-10 18:37:40 +01:00
entry_points={
'console_scripts': [
2022-09-16 19:23:35 +02:00
'anidl=anidl:main',
2022-03-10 18:37:40 +01:00
],
},
keywords=['trackma', 'animld', 'anime', 'adl', 'linux', 'windows'],
)