-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
69 lines (62 loc) · 2.06 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import io
from os import path
from setuptools import setup
version = {}
with open('osewb/_version.py') as fp:
exec(fp.read(), version)
current_dir = path.abspath(path.dirname(__file__))
with io.open(path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ose-workbench-platform',
description='Common platform for developing Open Source Ecology (OSE) workbenches.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gbroques/ose-workbench-platform',
author='G Roques',
version=version['__version__'],
packages=['osewb', 'osewb.docs', 'osewb.docs.ext'],
include_package_data=True,
entry_points={
'console_scripts': [
'osewb = osewb.osewb:main'
]
},
install_requires=[
# -----------------------
# | Source Requirements |
# -----------------------
'cookiecutter==1.7.2',
'Jinja2<3.0.0', # Also a requirement of cookiecutter
'jinja2-time>=0.2.0', # Also a requirement of cookiecutter
# ----------------------------
# | Docs Requirements |
# | Also in environment.yml |
# ----------------------------
'sphinx==3.2.0',
'sphinx-rtd-theme==0.5.0',
# ---------------------
# | Test Requirements |
# ---------------------
'coverage==5.2.1',
'coveralls==2.1.1',
'pytest==6.0.1',
'pytest-cov==2.10.0',
# ---------------------
# | Lint Requirements |
# ---------------------
'flake8==3.8.3',
'flake8-colors==0.1.6',
'flake8-isort==4.0.0a0',
'isort==5.3.2',
'autopep8==1.5.4',
'mypy==0.782',
'pydocstyle==5.0.2',
'rope==0.17.0'
],
classifiers=[
# Full List: https://pypi.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3 :: Only'
]
)