mirror of
https://github.com/avatao-content/baseimage-tutorial-framework
synced 2024-11-05 16:11:21 +00:00
24 lines
725 B
Python
24 lines
725 B
Python
from os.path import dirname, realpath, join
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
here = dirname(realpath(__file__))
|
|
|
|
with open(join(here, 'VERSION'), 'r') as ifile:
|
|
version = ifile.read().strip('\n')
|
|
with open(join(here, 'requirements.txt'), 'r') as ifile:
|
|
requirements = ifile.read().splitlines()
|
|
|
|
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'},
|
|
install_requires=requirements,
|
|
zip_safe=False)
|