forked from rossmacarthur/serde
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
81 lines (69 loc) · 2.36 KB
/
setup.py
File metadata and controls
81 lines (69 loc) · 2.36 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
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
"""
Setup file for Serde.
"""
import io
import os
import re
from setuptools import find_packages, setup
def get_metadata():
"""
Return metadata for Serde.
"""
here = os.path.abspath(os.path.dirname(__file__))
init_path = os.path.join(here, 'src', 'serde', '__init__.py')
readme_path = os.path.join(here, 'README.rst')
with io.open(init_path, encoding='utf-8') as f:
about_text = f.read()
metadata = {
key: re.search(r'__' + key + r"__ = '(.*?)'", about_text).group(1)
for key in (
'title',
'version',
'url',
'author',
'author_email',
'license',
'description',
)
}
metadata['name'] = metadata.pop('title')
with io.open(readme_path, encoding='utf-8') as f:
metadata['long_description'] = f.read()
return metadata
metadata = get_metadata()
# Primary requirements
install_requires = ['isodate==0.6.*', 'six==1.*,>=1.13.0']
ext_requires = ['chardet==3.*', 'validators>=0.12.0']
setup(
# Options
install_requires=install_requires,
extras_require={'ext': ext_requires},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
packages=find_packages('src'),
package_dir={'': 'src'},
# Metadata
download_url='{url}/archive/{version}.tar.gz'.format(**metadata),
project_urls={
'Documentation': 'https://rossmacarthur.github.io/serde/',
'Issue Tracker': '{url}/issues'.format(**metadata),
},
classifiers=[
'License :: OSI Approved :: Apache Software License',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],
keywords='serde serialization deserialization validation schema json',
**metadata
)