forked from LegNeato/bztools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (31 loc) · 1.02 KB
/
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
32
33
34
35
36
import os
from setuptools import setup, find_packages
root = os.path.abspath(os.path.dirname(__file__))
path = lambda *p: os.path.join(root, *p)
setup(
name='bztools',
version=__import__('bugzilla').__version__,
description='Models and scripts to access the Bugzilla REST API.',
long_description=open(path('README.rst')).read(),
author='Jeff Balogh',
author_email='[email protected]',
url='http://github.com/LegNeato/bztools',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
# install_requires=['remoteobjects>=1.1'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
entry_points={
'console_scripts': [
'bzattach = scripts.attach:main',
],
},
)