rename to aerich

This commit is contained in:
long2ice
2020-05-15 13:25:28 +08:00
parent 00764c1b3d
commit b767f409f4
16 changed files with 72 additions and 68 deletions

View File

@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
def version():
ver_str_line = open('alice/__init__.py', 'rt').read()
ver_str_line = open('aerich/__init__.py', 'rt').read()
mob = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", ver_str_line, re.M)
if not mob:
raise RuntimeError("Unable to find version string")
@@ -20,20 +20,20 @@ def requirements():
setup(
name='alice',
name='aerich',
version=version(),
description='A database migrations tool for Tortoise-ORM.',
author='long2ice',
long_description_content_type='text/x-rst',
long_description=long_description,
author_email='long2ice@gmail.com',
url='https://github.com/long2ice/alice',
url='https://github.com/long2ice/aerich',
license='MIT License',
packages=find_packages(include=['alice*']),
packages=find_packages(include=['aerich*']),
include_package_data=True,
zip_safe=True,
entry_points={
'console_scripts': ['alice = alice.cli:main'],
'console_scripts': ['aerich = aerich.cli:main'],
},
platforms='any',
keywords=(