-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 747 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 747 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
from setuptools import setup, find_packages
import os
PACKAGE = 'trac_pytest'
version = '0.1'
long_description = open("README.md").read()
classifiers = [
"Programming Language :: Python",
("Topic :: Software Development :: "
"Libraries :: Python Modules")]
setup(name=PACKAGE,
version=version,
description='py.test fixture for trac',
long_description=long_description,
classifiers=classifiers,
keywords='trac, py.test, fixture',
author='Rainer Hihn',
author_email='rainer.hihn@inquant.de',
url='http://www.inquant.de',
license='GPLv3',
packages=find_packages(exclude=['ez_setup']),
include_package_data=True,
install_requires=[],
entry_points={
'pytest11': [
'trac_pytest = trac_pytest',
]
},
)