mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-01 00:31:22 +00:00
21 lines
606 B
Python
21 lines
606 B
Python
from setuptools import setup, find_packages
|
|
from os.path import dirname, realpath, join
|
|
|
|
|
|
LIB_DIR = dirname(realpath(__file__))
|
|
|
|
version = None
|
|
with open(join(LIB_DIR, 'VERSION'), 'r') as ifile:
|
|
version = ifile.read().strip('\n')
|
|
|
|
setup(name='tfw',
|
|
version=version,
|
|
description='Avatao tutorial-framework',
|
|
url='https://github.com/avatao-content/baseimage-tutorial-framework',
|
|
author='Avatao.com Innovative Learning Kft.',
|
|
author_email='support@avatao.com',
|
|
license='custom',
|
|
packages=find_packages('lib'),
|
|
package_dir={'': 'lib'},
|
|
zip_safe=False)
|