-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
60 lines (51 loc) · 2.04 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
# This program is free software: you can redistribute it and/or modify it under the
# terms of the Apache License (v2.0) as published by the Apache Software Foundation.
#
# This program is distributed in the hope that it will be useful, but WITHOUT ANY
# WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE. See the Apache License for more details.
#
# You should have received a copy of the Apache License along with this program.
# If not, see <https://www.apache.org/licenses/LICENSE-2.0>.
"""Build and installation script for names_generator."""
# standard libs
import re
from setuptools import setup, find_packages
# get long description from README.rst
with open("README.md", mode="r") as readme:
long_description = readme.read()
# get package metadata by parsing __meta__ module
with open("resource_namer/__meta__.py", mode="r") as source:
content = source.read().strip()
metadata = {
key: re.search(key + r'\s*=\s*[\'"]([^\'"]*)[\'"]', content).group(1)
for key in [
"__version__",
"__authors__",
"__contact__",
"__description__",
"__license__",
]
}
setup(
name="resource-namer",
version=metadata["__version__"],
author=metadata["__authors__"],
author_email=metadata["__contact__"],
description=metadata["__description__"],
license=metadata["__license__"],
keywords="random resource name generator",
url="https://github.com/darenr/resource-namer",
packages=find_packages(),
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
)