This repository has been archived by the owner on May 3, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
63 lines (59 loc) · 2.08 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# -*- coding: utf-8 -*-
##
## This file is part of setuptools-bower
## Copyright (C) 2013, 2014, 2016 CERN.
##
## setuptools-bower is free software; you can redistribute it and/or
## modify it under the terms of the Revised BSD License; see LICENSE
## file for more details.
import os
import re
from setuptools import setup
# Get the version string. Cannot be done with import!
with open(os.path.join('setuptools_bower', 'version.py'), 'rt') as f:
version = re.search(
'__version__\s*=\s*"(?P<version>.*)"\n',
f.read()
).group('version')
setup(
name='setuptools-bower',
version=version,
url='http://github.com/inveniosoftware/setuptools-bower/',
license='BSD',
author='Invenio collaboration',
author_email='info@inveniosoftware.org',
description='Setuptools commands for integrating bower.',
long_description=open('README.rst').read(),
packages=['setuptools_bower', ],
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'setuptools>=2.0',
'six',
],
classifiers=[
'Environment :: Web Environment',
'Framework :: Setuptools Plugin',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Development Status :: 5 - Production/Stable',
],
entry_points={
"distutils.commands": [
"build_bower = setuptools_bower.setuptools_command:BowerBuildCommand",
"build_grunt = setuptools_bower.setuptools_command:GruntBuildCommand",
"build_npm = setuptools_bower.setuptools_command:NPMBuildCommand",
]
},
test_suite='nose.collector',
tests_require=['nose', 'pycodestyle>=2.0.0', 'pydocstyle>=1.0.0'],
)