from setuptools import setup
|
|
|
|
setup(
|
|
name='vapour',
|
|
author='Erin',
|
|
author_email='erin@hashbang.sh',
|
|
version='0.1',
|
|
license='MIT',
|
|
|
|
packages=[],
|
|
install_requires=['pyglet', 'numpy'],
|
|
|
|
entry_points='''
|
|
[console_scripts]
|
|
vapour=vapour:run_vapour
|
|
''',
|
|
)
|