This repository has been archived by the owner on Aug 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
63 lines (59 loc) · 2.35 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
61
62
63
# See also LICENSE.txt
from setuptools import find_packages
from setuptools import setup
description = ("Plug-in for zest.releaser to allow uploading the created egg "
"via SCP or SFTP to configurable destinations.")
setup(
name='gocept.zestreleaser.customupload',
version='3.1.dev0',
author='gocept gmbh & co. kg',
author_email='[email protected]',
url='https://github.com/gocept/gocept.zestreleaser.customupload',
description=description,
long_description="\n\n".join([open('COPYRIGHT.txt').read(),
open('README.rst').read(),
open('CHANGES.rst').read()]),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: Developers',
'License :: OSI Approved',
'License :: OSI Approved :: Zope Public License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Archiving :: Packaging',
'Topic :: System :: Installation/Setup',
'Topic :: Utilities',
],
keywords='zest.releaser release upload custom PyPI SCP SFTP package sdist',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
zip_safe=False,
license='ZPL',
namespace_packages=['gocept', 'gocept.zestreleaser'],
install_requires=[
'setuptools',
'six',
'zest.releaser >= 5.0',
],
extras_require=dict(test=[
'mock',
]),
entry_points={
'zest.releaser.releaser.after':
['upload=gocept.zestreleaser.customupload.upload:upload',
'upload_doc=gocept.zestreleaser.customupload.doc:upload']},
)