setup.py 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. ###########################################################
  2. # © 2018-2019 Daniel 'grindhold' Brendle
  3. #
  4. # This file is part of elrotador.
  5. #
  6. # elrotador is free software: you can redistribute it and/or
  7. # modify it under the terms of the GNU Lesser General Public License
  8. # as published by the Free Software Foundation, either
  9. # version 3 of the License, or (at your option) any later
  10. # version.
  11. #
  12. # elrotador is distributed in the hope that it will be
  13. # useful, but WITHOUT ANY WARRANTY; without even the implied
  14. # warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. # PURPOSE. See the GNU Lesser General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Lesser General Public
  18. # License along with elrotador.
  19. # If not, see http://www.gnu.org/licenses/.
  20. ###########################################################
  21. from setuptools import setup
  22. setup(
  23. name='elrotador',
  24. version='1.0',
  25. description='Molecule geometry manipulation',
  26. author="Daniel 'grindhold' Brendle",
  27. author_email='grindhold+rotador@skarphed.org',
  28. packages=['elrotador'], #same as name
  29. install_requires=['numpy'], #external packages as dependencies
  30. )