-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·59 lines (42 loc) · 1.42 KB
/
setup.py
File metadata and controls
executable file
·59 lines (42 loc) · 1.42 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
#!/usr/bin/python
"""
A setuptools based setup module.
"""
from setuptools import setup
from package_version_present import __version__ as version
setup(
name='package-version-present',
version=version,
description='Check the package version present',
long_description="""
Package Version Present
The utility checking presence of the package version. See https://github.com/nnseva/package-version-present
""",
url='https://github.com/nnseva/package-version-present',
author='Vsevolod Novikov',
author_email='nnseva@gmail.com',
zip_safe=False,
platforms="any",
license='LGPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Utilities',
'Environment :: Console',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'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 :: 3.10',
'Programming Language :: Python :: 3.11',
],
keywords='version pypi',
py_modules=['package_version_present'],
entry_points={
'console_scripts': [
'package-version-present=package_version_present:main',
],
},
)