-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 672 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 672 Bytes
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
# -*- coding: utf-8 -*-
#
# Copyright (C) 2021 Cinc
#
# License: 3-clause BSD
#
from setuptools import setup
setup(
name='TracRelations',
version='0.1.0',
packages=['tracrelations'],
package_data={
'tracrelations': [
]
},
install_requires=['Trac'],
author='Cinc',
author_email='',
maintainer="Cinc-th",
license='BSD',
url='https://trac-hacks.org/',
description='Trac relations',
long_description="Trac relations",
keywords='relations',
classifiers=['Framework :: Trac'],
entry_points={'trac.plugins': [
'tracrelations = tracrelations',
]},
test_suite='tracrelations.tests'
)