forked from KonishchevDmitry/python-config
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (37 loc) · 1.49 KB
/
Copy pathsetup.py
File metadata and controls
46 lines (37 loc) · 1.49 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
"""python-config installation script."""
from pathlib import Path
from setuptools import setup
if __name__ == "__main__":
readme = Path("README.rst").read_text()
version = Path("version.txt").read_text().strip()
setup(
name = "python-config",
version = version,
description = readme.split("\n", 1)[0],
long_description = readme,
url = "https://github.com/KonishchevDmitry/python-config",
license = "GPL3",
author = "Dmitry Konishchev",
author_email = "konishchev@gmail.com",
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"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",
],
platforms = [ "unix", "linux", "osx" ],
packages = [ "python_config", "python_config.viewer" ],
entry_points = {
"console_scripts": [
"python-config-view = python_config.viewer.cli:main",
],
},
)