mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-17 12:44:38 +03:00
Renovation
- rename package - rename command utility - use six for compatibility Signed-off-by: Hiroshi Miura <miurahr@linux.com>
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env python
|
||||
|
||||
import io
|
||||
import os
|
||||
|
||||
from setuptools import setup
|
||||
|
||||
def readme():
|
||||
with io.open(os.path.join(os.path.dirname(__file__),'README.rst'), mode="r", encoding="UTF-8") as f:
|
||||
return f.read()
|
||||
|
||||
setup(name='aqtinstall',
|
||||
version='0.2.0',
|
||||
description='Another Qt installer',
|
||||
url='http://github.com/miurahr/qli-installer',
|
||||
license='MIT',
|
||||
long_description=readme(),
|
||||
author='Hioshi Miura',
|
||||
author_email='miurahr@linux.com',
|
||||
packages = ["aqt"],
|
||||
scripts = ["aqtinst"]
|
||||
)
|
||||
Reference in New Issue
Block a user