Select Git revision
test-every.js
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 :: ",
],
)