-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathsetup.py
More file actions
77 lines (72 loc) · 2.71 KB
/
Copy pathsetup.py
File metadata and controls
77 lines (72 loc) · 2.71 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
from setuptools import setup
version = "3.0.1.dev0"
def get_text_from_file(fn):
text = open(fn, "rb").read()
return text.decode("utf-8")
setup(
name="mr.developer",
version=version,
description="A zc.buildout extension to ease the development of large projects with lots of packages.",
long_description="\n\n".join(
[
get_text_from_file("README.rst"),
get_text_from_file("HELP.rst"),
get_text_from_file("CHANGES.rst"),
]
),
# Get more strings from https://pypi.org/classifiers/
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Framework :: Buildout",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="buildout extension vcs git develop",
author="Florian Schulze",
author_email="florian.schulze@gmx.net",
url="https://github.com/fschulze/mr.developer",
license="BSD",
include_package_data=True,
zip_safe=False,
install_requires=[
"zc.buildout>=3.0.0",
],
extras_require={"test": "mock"},
python_requires=">=3.10",
entry_points="""
[console_scripts]
develop = mr.developer.develop:develop
[zc.buildout.extension]
default = mr.developer.extension:extension
[mr.developer.workingcopytypes]
svn = mr.developer.svn:SVNWorkingCopy
git = mr.developer.git:GitWorkingCopy
gitsvn = mr.developer.gitsvn:GitSVNWorkingCopy
hg = mr.developer.mercurial:MercurialWorkingCopy
bzr = mr.developer.bazaar:BazaarWorkingCopy
fs = mr.developer.filesystem:FilesystemWorkingCopy
cvs = mr.developer.cvs:CVSWorkingCopy
darcs = mr.developer.darcs:DarcsWorkingCopy
[mr.developer.commands]
activate = mr.developer.commands:CmdActivate
arguments = mr.developer.commands:CmdArguments
checkout = mr.developer.commands:CmdCheckout
deactivate = mr.developer.commands:CmdDeactivate
help = mr.developer.commands:CmdHelp
info = mr.developer.commands:CmdInfo
list = mr.developer.commands:CmdList
pony = mr.developer.commands:CmdPony
purge = mr.developer.commands:CmdPurge
rebuild = mr.developer.commands:CmdRebuild
reset = mr.developer.commands:CmdReset
status = mr.developer.commands:CmdStatus
update = mr.developer.commands:CmdUpdate
""",
)