-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
34 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
from setuptools import setup
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='bower.py',
version='1.0',
description='How I learned to stop worrying and love the bower',
long_description=long_description,
url='https://github.com/r1chardj0n3s/laughing-robot',
author='Richard Jones',
author_email='[email protected]',
license='Apache 2.0',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.4',
],
keywords='bower javascript',
install_requires=['requests', 'semantic_version', 'github3.py'],
packages=['bowerlib'],
entry_points={
'console_scripts': [
'bower.py = bowerlib.main:main',
],
},
)