-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
32 lines (28 loc) · 861 Bytes
/
setup.py
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
from setuptools import find_packages, setup
version='0.1.2'
try:
long_description = open("README.txt").read()
except:
long_description = ''
try:
long_description += open("CHANGES.txt").read()
except:
pass
setup(name='trac-UserPicturesPlugin',
version=version,
description="Adds user pictures to Trac",
long_description=long_description,
author='Ethan Jucovy',
author_email='[email protected]',
url='https://trac-hacks.org/wiki/UserPicturesPlugin',
keywords='trac plugin',
license="BSD",
classifiers = ['Framework :: Trac'],
packages=find_packages(exclude=['ez_setup', 'examples', 'tests*']),
package_data={ 'userpictures': ['templates/*', 'htdocs/*'] },
zip_safe=False,
entry_points = """
[trac.plugins]
userpictures = userpictures
""",
)