-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (53 loc) · 1.7 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
from setuptools import setup, find_packages
import os
from os.path import abspath, dirname, join
from io import open
here = abspath(dirname(__file__))
# Get the long description from the README file
with open(join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
package_data = []
for root, dirs, files in os.walk(join(here, 'src/starterkit_ci/sphinx_config/_static')):
package_data += [join(root, fn) for fn in files]
setup(
name='starterkit_ci',
use_scm_version=True,
description='Helpers for Starterkit Continuous Integration',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lhcb/starterkit_ci',
author='LHCb Starterkit',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='Starterkit',
packages=find_packages('src'),
package_dir={'': 'src'},
python_requires='>=3.6',
setup_requires=['setuptools_scm'],
install_requires=[
'sphinx',
'sphinx-rtd-theme',
'recommonmark',
'sphinx-markdown-parser',
'nbsphinx',
],
package_data={
'starterkit_ci': package_data,
},
zip_safe=False,
entry_points={
'console_scripts': {
'starterkit_ci = starterkit_ci:parse_args',
}
},
project_urls={
'Bug Reports': 'https://github.com/lhcb/starterkit-ci/issues',
'Source': 'https://github.com/lhcb/starterkit-ci',
},
)