-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
55 lines (50 loc) · 1.72 KB
/
setup.py
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Copyright (c) 2019 Seven Bridges. See LICENSE
import pathlib
from datetime import datetime
from setuptools import setup, find_packages
current_path = pathlib.Path(__file__).parent
name = 'benten'
ver_path = pathlib.Path(current_path, "benten", "version.py")
_ver = {}
exec(ver_path.open("r").read(), _ver)
version = _ver["__version__"]
now = datetime.utcnow()
desc_path = pathlib.Path(current_path, "Readme.md")
long_description = desc_path.open("r").read()
setup(
name=name,
version=version,
packages=find_packages(),
platforms=['POSIX', 'MacOS', 'Windows'],
python_requires='>=3.7.0',
install_requires=[
"ruamel.yaml == 0.16.12",
"dukpy >= 0.2.2",
"cwlformat >= 2021.1.5"
],
entry_points={
'console_scripts': [
'benten-ls = benten.__main__:main'
],
},
author='Seven Bridges Genomics Inc.',
maintainer='Seven Bridges Genomics Inc.',
maintainer_email='kaushik.ghose@sbgenomics.com',
author_email='kaushik.ghose@sbgenomics.com',
description='CWL language server developed by Seven Bridges',
url='https://github.com/rabix/benten',
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
license='Copyright (c) {} Seven Bridges'.format(now.year),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only'
],
keywords='seven bridges cwl common workflow language'
)