-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (56 loc) · 1.57 KB
/
Copy pathsetup.py
File metadata and controls
63 lines (56 loc) · 1.57 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
# -*- coding: utf-8 -*-
import os
import codecs
from setuptools import setup
from setuptools import find_packages
install_requires = [
"setuptools",
"six",
"Jinja2",
]
def read(*rnames):
return codecs.open(
os.path.join(os.path.dirname(__file__), *rnames), "r", "utf-8"
).read()
setup(
name="mr.bob",
version="2.1.dev0",
description="Bob renders directory structure templates",
long_description=read("README.rst") + "\n" + read("HISTORY.rst"),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
],
keywords="template skeleton",
author="Domen Kozar, Tom Lazar",
author_email="",
url="https://github.com/collective/mr.bob",
license="BSD",
packages=find_packages(),
python_requires=">=3.11",
install_requires=install_requires,
extras_require={
"test": [
"nose2",
"coverage",
"flake8",
],
"development": [
"zest.releaser",
"Sphinx",
],
},
entry_points="""
[console_scripts]
mrbob = mrbob.cli:main
""",
include_package_data=True,
zip_safe=False,
)