[old and useless] trying to make a vaporwave terrain visualizer in gl
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
261 B

  1. from setuptools import setup
  2. setup(
  3. name='vapour',
  4. author='Erin',
  5. author_email='erin@hashbang.sh',
  6. version='0.1',
  7. license='MIT',
  8. packages=[],
  9. install_requires=['pyglet', 'numpy'],
  10. entry_points='''
  11. [console_scripts]
  12. vapour=vapour:run_vapour
  13. ''',
  14. )