This repository has been archived by the owner on Apr 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (65 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
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
# Project skeleton maintained at gitlab://support/skeleton
# based on https://github.com/jaraco/skeleton
import setuptools
name = 'mongo-emit'
dashname = name.replace('_', '-')
description = 'MongoDB ChangeStream Emitter'
nspkg_technique = 'managed'
"""
Does this package use "native" namespace packages or
pkg_resources "managed" namespace packages?
"""
params = dict(
name=name,
use_scm_version=True,
author="Sebastian Kriems",
author_email="gmail.at.bastobuntu",
description=description or name,
url='https://github.com/skriems/mongo-emit',
packages=setuptools.find_packages(),
include_package_data=True,
namespace_packages=(
name.split('.')[:-1] if nspkg_technique == 'managed'
else []
),
python_requires='>=3.5',
install_requires=[
'pymongo>=3.7.1',
'python-dateutil>=2.7.3',
'pytz>=2018.5',
'yamlreader>=3.0.4'
],
extras_require={
'testing': [
# upstream
'pytest>=3.5',
'pytest-sugar>=0.9.1',
'collective.checkdocs',
'pytest-flake8',
# local
],
'docs': [
# upstream
'sphinx',
'jaraco.packaging>=3.2',
'rst.linker>=1.9',
# local
],
},
setup_requires=[
'setuptools_scm>=1.15.0',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
entry_points={
'console_scripts': [
'mongo-emit = mongo_emit:run'
]
}
)
if __name__ == '__main__':
setuptools.setup(**params)