File: setup.py

package info (click to toggle)
trac-customfieldadmin 0.4.0%2Bsvn18456-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 196 kB
  • sloc: python: 524; javascript: 55; makefile: 4
file content (49 lines) | stat: -rw-r--r-- 1,456 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

from setuptools import setup

from trac.dist import get_l10n_cmdclass


extra = {}
cmdclass = get_l10n_cmdclass()
if cmdclass:
    extra['cmdclass'] = cmdclass


setup(name='TracCustomFieldAdmin',
      version='0.4.0',
      packages=['customfieldadmin'],
      author='CodeResort.com & Optaros.com',
      description='Admin panel for managing Trac ticket custom fields.',
      url='https://trac-hacks.org/wiki/CustomFieldAdminPlugin',
      license='BSD',
      classifiers=[
          'Framework :: Trac',
          'Intended Audience :: System Administrators',
          'License :: OSI Approved :: BSD License',
          'Operating System :: OS Independent',
          'Programming Language :: Python :: 2',
          'Programming Language :: Python :: 2.7',
          'Programming Language :: Python :: 3',
      ],
      entry_points={
          'trac.plugins': [
              'customfieldadmin.api = customfieldadmin.api',
              'customfieldadmin.admin = customfieldadmin.admin',
          ]
      },
      exclude_package_data={'': ['tests/*']},
      test_suite = 'customfieldadmin.tests.test_suite',
      tests_require = [],
      package_data={
          'customfieldadmin' : [
              'htdocs/css/*.css',
              'htdocs/js/*.js',
              'templates/*.html',
              'locale/*/LC_MESSAGES/*.mo'
          ]
      },
      extras_require = {'Babel': 'Babel>=0.9.6'},
      **extra
 )