-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
41 lines (37 loc) · 1.18 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
37
38
39
40
41
#!/usr/bin/env python
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
try:
from buildbot_pkg import setup_www_plugin
except ImportError:
import sys
print('Please install buildbot_pkg module in order to install that '
'package, or use the pre-build .whl modules available on pypi',
file=sys.stderr)
sys.exit(1)
setup_www_plugin(
name='buildbot-macports-custom-views',
description='MacPorts Custom Views Plugin for Buildbot',
long_description=long_description,
long_description_content_type='text/markdown',
version='0.1.2',
author=u'Rajdeep Bharati',
author_email=u'[email protected]',
url='https://github.com/macports/buildbot-macports-custom-views',
packages=['buildbot_macports_custom_views'],
package_data={
'': [
'VERSION',
'static/*'
]
},
entry_points="""
[buildbot.www]
buildbot_macports_custom_views = buildbot_macports_custom_views:ep
""",
classifiers=[
'License :: OSI Approved :: MIT License'
],
)