Main Lemma Repository
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.

setup.py 1.1KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #from distutils.core import setup
  2. from setuptools import setup, Extension, find_packages
  3. import sys
  4. if sys.version_info < (3,0):
  5. sys.exit('Sorry, Python < 3.0 is not supported')
  6. setup(
  7. name = 'pyLemma',
  8. version = '0.0.2',
  9. author = 'Trevor Irons and others',
  10. author_email = 'Trevor.Irons@lemmasoftware.org',
  11. description = 'A short description of the app/lib',
  12. long_description = 'A longer one',
  13. classifiers=[
  14. 'Development Status :: 3 - Alpha',
  15. 'Intended Audience :: Developers',
  16. 'License :: OSI Approved :: MPL License',
  17. 'Topic :: Scientific/Engineering',
  18. 'Programming Language :: Python :: 3',
  19. ],
  20. #packages = ['pyLemma.pyFDEM1D'],
  21. packages=find_packages(),
  22. #package_dir = {
  23. # '': '../'
  24. #},
  25. include_package_data=True,
  26. package_data = {
  27. #'pyLemma': ['pyFDEM1D.*.so']
  28. #'pyLemma.pyFDEM1D': ['pyFDEM1D.*.so']
  29. #'pyLemma.pyFDEM1D': ['pyFDEM1D.*.so']
  30. '': ['pyFDEM1D.*.so']
  31. },
  32. zip_safe=False,
  33. )
  34. #ext_modules=[CMakeExtension('proj_name')],
  35. #cmdclass=dict(build_ext=CMakeBuild),