/ setup.py
setup.py
1 from setuptools import setup, find_packages 2 3 4 with open('LICENSE') as f: 5 license = f.read() 6 7 with open('requirements.txt') as f: 8 dependencies = [ l for l in f.readlines() if (len(l)>1 and not l.startswith("#"))] 9 10 setup( 11 name='geavision_tools', 12 version='0.0.1', 13 description='Python library to generate data to be displayed on geavision displays', 14 author='Marvin Feiter', 15 author_email='info@marvinfeiter.de', 16 license=license, 17 packages=find_packages(exclude=('tests', 'docs')), 18 install_requires=dependencies, 19 )