-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
58 lines (45 loc) · 1.51 KB
/
setup.py
File metadata and controls
58 lines (45 loc) · 1.51 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
"""Setup script for bvc"""
import os
from setuptools import find_packages
from setuptools import setup
__version__ = '1.10.0'
__license__ = 'BSD License'
__author__ = 'Fantomas42'
__email__ = 'fantomas42@gmail.com'
__url__ = 'https://github.com/Fantomas42/buildout-versions-checker'
install_requires = ['packaging']
setup(
name='buildout-versions-checker',
version=__version__,
zip_safe=False,
packages=find_packages(exclude=['tests']),
include_package_data=True,
author=__author__,
author_email=__email__,
url=__url__,
license=__license__,
platforms='any',
description='Checks egg updates in your Buildout configurations.',
long_description=open(
os.path.join('README.rst')
).read(),
keywords='buildout, versions, updates',
classifiers=[
'Framework :: Buildout',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules'
],
install_requires=install_requires,
entry_points={
'console_scripts': [
'indent-buildout=bvc.scripts.indent_buildout:cmdline',
'find-unused-versions=bvc.scripts.find_unused_versions:cmdline',
'check-buildout-updates=bvc.scripts.check_buildout_updates:cmdline'
]
},
test_suite='bvc.tests.test_suite',
)