-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 810 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 810 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
REQUIRES = ["connexion"]
setup(
name = "cerise",
version = "develop",
author = "Lourens Veen",
author_email = "l.veen@esciencecenter.nl",
description = ("A simple CWL job running service"),
license = "Apache 2.0",
keywords = ["Python", "CWL", "HPC", "Science"],
url = "https://github.com/LourensVeen/cerise",
packages=['cerise'],
packages_data={'': ['swagger_server/swagger/swagger.yaml']},
include_package_data=True,
long_description=read('README.md'),
classifiers=[
'Development Status :: 1 - Planning',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
],
)