-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
87 lines (77 loc) · 2.71 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
#!/usr/bin/env python
"""The setup script."""
from setuptools import setup, find_packages
from checksit import __version__
__author__ = "Ag Stephens"
__contact__ = "[email protected]"
__copyright__ = "Copyright 2020 United Kingdom Research and Innovation"
__license__ = "BSD - see LICENSE file in top-level package directory"
with open('README.md') as readme_file:
readme = readme_file.read()
with open('HISTORY.rst') as history_file:
history = history_file.read()
requirements = [line.strip() for line in open("requirements.txt")]
dev_requirements = [line.strip() for line in open("requirements_dev.txt")]
test_requirements = ['pytest>=3', ]
docs_requirements = [
"sphinx",
"sphinx-rtd-theme",
"nbsphinx",
"pandoc",
"ipython",
"ipykernel",
"jupyter_client"
]
setup(
author=__author__,
author_email=__contact__,
python_requires='>=3.6',
setup_requires = ['setuptools_scm'],
# use_scm_version=True,
version=__version__,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Security',
'Topic :: Internet',
'Topic :: Scientific/Engineering',
'Topic :: System :: Distributed Computing',
'Topic :: System :: Systems Administration :: Authentication/Directory',
'Topic :: Software Development :: Libraries :: Python Modules'
],
description="File checking made simple",
entry_points={
'console_scripts': [
'checksit=checksit.cli:main',
],
},
install_requires=requirements,
license=__license__,
long_description=readme,
long_description_content_type="text/x-rst",
include_package_data=True,
keywords='checksit',
name='checksit',
packages=find_packages(include=['checksit', 'checksit.*']),
test_suite='tests',
tests_require=test_requirements,
extras_require={"docs": docs_requirements,
"dev": dev_requirements},
url='https://github.com/cedadev/checksit',
zip_safe=False,
)