| 12345678910111213141516171819202122 |
- from __future__ import absolute_import
- from os.path import join, dirname
- from setuptools import setup
- import fourier
- basepath = dirname(__file__)
- binpath = join(basepath, 'bin')
- setup(
- name = 'fourier',
- packages = ['fourier'],
- version = fourier.__version__,
- description = 'Fourier command line tools',
- long_description = 'You can use it for do maintenance stuff',
- scripts = [join(binpath, 'fourier')],
- install_requires=['pyaudio', 'curses'],
- author = 'Gamaliel Espinoza M.',
- author_email = 'gamaliel.espinoza@gmail.com',
- url = 'https://git.miralo.xyz/AudioValid/fourier-install',
- keywords = ['image', 'icons', ''],
- classifiers = [],
- )
|