aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: cf8475899379bace3fdaaa6e9d293ff06d5c1869 (plain) (blame)
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "build"]
build-backend = "setuptools.build_meta"

[project]
name = "bugs-everywhere"
# version = "1.1"
dynamic = ["version"]
license = {text = "GNU General Public License (GPL)"}
authors = [
    { name = "W. Trevor King", email = "wking@tremily.us" }
]
classifiers = ["Development Status :: 4 - Beta",
               "Environment :: Console",
               "Environment :: Web Environment",
               "Framework :: CherryPy",
               "Intended Audience :: Customer Service",
               "Intended Audience :: Developers",
               "Intended Audience :: End Users/Desktop",
               "License :: OSI Approved :: GNU General Public License (GPL)",
               "License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
               "License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
               "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
               "Operating System :: OS Independent",
               "Programming Language :: Python",
               "Programming Language :: Python :: 2.7",
               "Topic :: Software Development :: Bug Tracking"
]
description = "Bugtracker supporting distributed revision control"
readme = "README"

[project.scripts]
be = "libbe.ui.command_line:main"

[tool.setuptools]
packages=['libbe',
          'libbe.command',
          'libbe.storage',
          'libbe.storage.util',
          'libbe.storage.vcs',
          'libbe.ui',
          'libbe.ui.util',
          'libbe.util']

[tool.setuptools_scm]


# rev_id = version.version_info['revision']
# rev_date = version.version_info['date']
# 
# data_files = []
# 
# man_path = os.path.join('doc', 'man', 'be.1')
# if os.path.exists(man_path):
#     data_files.append(('share/man/man1', [man_path]))
# 
# setup(
#     url='http://bugseverywhere.org/',
#     download_url=(
#         'http://downloads.bugseverywhere.org/releases/be-{}.tar.gz'.format(
#             version.version())),
#     platforms=['all'],
#     long_description=open(os.path.join(_this_dir, 'README.rst'), 'r').read(),
#     scripts=['be'],
#     data_files=data_files,
#     requires=[
#         'Jinja2 (>=2.6)',
#         'CherryPy (>=3.2)',
#         ]
#     )