forked from RedTurtle/js.bootstrap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 1 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
from setuptools import setup, find_packages
import os
version = '3.0.0.dev0'
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = (
read('README.rst')
+ '\n' +
read('js', 'bootstrap', 'test_bootstrap.txt')
+ '\n' +
read('CHANGES.txt'))
setup(
name='js.bootstrap',
version=version,
description="fanstatic twitter bootstrap.",
long_description=long_description,
classifiers=[],
keywords='fanstatic twitter bootstrap redturtle',
author='RedTurtle Developers',
url='https://github.com/RedTurtle/js.bootstrap',
author_email='[email protected]',
license='BSD',
packages=find_packages(),
namespace_packages=['js'],
include_package_data=True,
zip_safe=False,
install_requires=[
'fanstatic',
'js.jquery',
'setuptools',
],
entry_points={
'fanstatic.libraries': [
'bootstrap = js.bootstrap:library',
],
},
)