-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
64 lines (55 loc) · 1.87 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
import os
import re
from setuptools import find_namespace_packages, setup
name = 'django-epsg-cache'
package = 'epsg_cache'
description = 'An django app to fetch and cache EPSG Datasets from http://epsg-registry.org'
url = 'https://github.com/mrmap-community/django-epsg-cache'
author = 'mrmap-commuity'
author_email = '[email protected]'
license = 'MIT'
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=[
"django>=3.2",
"requests>=2.23.0",
"lxml>=5.0.0",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"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',
)