setup.py 728 B

123456789101112131415161718192021222324252627
  1. from setuptools import setup, find_packages
  2. version = '0.0.1'
  3. requires = ['ChildProject>=0.0.3']
  4. setup(
  5. name='EL1000',
  6. version = version,
  7. description='LAAC@LSCP',
  8. url='https://gin.g-node.org/EL1000/tools',
  9. author='Lucas Gautheron',
  10. author_email='lucas.gautheron@gmail.com',
  11. license='MIT',
  12. classifiers=[
  13. 'Development Status :: 3 - Alpha',
  14. 'Intended Audience :: Science/Research',
  15. 'License :: OSI Approved :: MIT License',
  16. 'Natural Language :: English',
  17. 'Operating System :: Unix',
  18. 'Programming Language :: Python',
  19. 'Topic :: Scientific/Engineering',
  20. ],
  21. packages=find_packages(),
  22. install_requires=requires,
  23. zip_safe=False
  24. )