-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
55 lines (46 loc) · 2.46 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
# 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.rst', mode='r') as readme:
long_description = readme.read()
# get package metadata by parsing __meta__ module
with open('names_generator/__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 = 'names_generator',
version = metadata['__version__'],
author = metadata['__authors__'],
author_email = metadata['__contact__'],
description = metadata['__description__'],
license = metadata['__license__'],
keywords = 'random name generator',
url = 'https://github.com/glentner/names_generator',
packages = find_packages(),
long_description = long_description,
long_description_content_type = 'text/x-rst',
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',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13'],
entry_points = {'console_scripts': [f'generate_name=names_generator:main']},
install_requires = ['cmdkit>=2.7.4', ]
)