-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (34 loc) · 1.18 KB
/
setup.py
File metadata and controls
37 lines (34 loc) · 1.18 KB
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
#!/usr/bin/env python3
import os, setuptools
setup_path = os.path.dirname(__file__)
with open(os.path.join(setup_path, "README.md")) as readme:
long_description = readme.read()
setuptools.setup(
name="scielo-kernel-oaipmh",
version="0.1",
author="SciELO Team",
author_email="scielo-dev@googlegroups.com",
description="",
long_description=long_description,
long_description_content_type="text/markdown",
license="2-clause BSD",
packages=setuptools.find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests", "docs"]
),
include_package_data=False,
python_requires=">=3.7",
install_requires=["requests", "pymongo", "pyoai"],
test_suite="tests",
classifiers=(
"Development Status :: 2 - Pre-Alpha",
"Environment :: Other Environment",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
),
entry_points={
"paste.app_factory": ["main = oaipmhserver.server:main",],
"console_scripts": ["oaipmhctl = oaipmhserver.oaipmhctl:main",],
},
)