Skip to content
Snippets Groups Projects
Select Git revision
  • ab1788292912fff7689d0be1d91fd5f36a2e1d85
  • master default protected
2 results

test-every.js

Blame
  • setup.py 721 B
    import os
    from setuptools import setup, find_packages
    
    def read(fname):
        return open(os.path.join(os.path.dirname(__file__), fname)).read()
    
    setup(
        name = "clmctest",
        version = "SNAPSHOT",
        author = "Michael Boniface",
        author_email = "mjb@it-innovation.soton.ac.uk",
        description = "FLAME CLMC Testing Module",
        license = "license",
        keywords = "FLAME CLMC test",
        packages=find_packages(exclude=["services"]),
        include_package_data=True,
        package_data={'': ['git-commit-ref', '*.yml', '*.sh', '*.json', '*.conf']},        
        long_description="long description",
        classifiers=[
            "Development Status :: Alpha",
            "Topic :: FLAME Tests",
            "License :: ",
        ],
    )