setup.py 580 B

12345678910111213141516171819202122
  1. from setuptools import setup
  2. import glob
  3. setup(
  4. name = 'finoex',
  5. version = '0.15.0',
  6. # description = '',
  7. author = 'Fabian Peter Hammerle',
  8. author_email = 'fabian.hammerle@gmail.com',
  9. url = 'https://git.hammerle.me/fphammerle/finoex',
  10. download_url = 'https://git.hammerle.me/fphammerle/finoex/archive/0.14.1.tar.gz',
  11. keywords = ['finances'],
  12. # classifiers = [],
  13. packages = ['finoex'],
  14. # scripts = glob.glob('scripts/*'),
  15. install_requires = [
  16. 'ioex>=0.17.0',
  17. 'pytz',
  18. ],
  19. tests_require = ['pytest'],
  20. )