-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (61 loc) · 2.11 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
import os
import re
from setuptools import find_namespace_packages, setup
name = 'django-ows-lib'
package = 'ows_lib'
description = 'Well layered ows lib with a client implementation to communicate with ogc services with django based objects, including xml mapper classes to serialize and deserialize ows xml files, such as capabilities.'
url = 'https://github.com/mrmap-community/django-ows-lib'
author = 'mrmap-community'
author_email = '[email protected]'
license = 'MIT'
REQUIREMENTS = [
"django>=3.0",
"django-epsg-cache>=0.2.0",
"eulxml>=1.1.3",
"isodate>=0.6.1",
"camel-converter>=3.0.0",
"requests>=2.23.0",
"pygeofilter>=0.2.1",
"pygml>=0.2.2"
]
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
def get_version(package):
"""
Return package version as listed in `__version__` in `init.py`.
"""
init_py = open(os.path.join(package, '__init__.py')).read()
return re.search("^__version__ = ['\"]([^'\"]+)['\"]",
init_py, re.MULTILINE).group(1)
version = get_version(package)
setup(
name=name,
version=version,
url=url,
license=license,
description=description,
long_description=long_description,
long_description_content_type='text/x-rst',
author=author,
author_email=author_email,
packages=[p for p in find_namespace_packages(
exclude=('tests*',)) if p.startswith(package)],
include_package_data=True,
install_requires=REQUIREMENTS,
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Internet :: WWW/HTTP",
"Environment :: Web Environment",
"Framework :: Django",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.8',
)