Skip to content

Commit e7374a6

Browse files
committed
Add the setup.
1 parent e8a5dcf commit e7374a6

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

setup.py

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
from setuptools import setup, find_packages
2+
3+
version = '2.0.2'
4+
5+
setup(name='django-bootstrap-static',
6+
version=version,
7+
description="A Collection of Bootstrap static",
8+
long_description=open("README.md", "r").read(),
9+
classifiers=[
10+
"Development Status :: 5 - Production/Stable",
11+
"Environment :: Web Environment",
12+
"Intended Audience :: End Users/Desktop",
13+
"Natural Language :: English",
14+
"Operating System :: OS Independent",
15+
"Framework :: Django",
16+
"Programming Language :: Python",
17+
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
18+
"Topic :: Utilities",
19+
"License :: OSI Approved :: MIT License",
20+
],
21+
keywords='',
22+
author='Derek Stegelman',
23+
author_email='dstegelman@gmail.com',
24+
url='http://github.com/dstegelman/django-bootstrap-static',
25+
license='MIT',
26+
packages=find_packages(),
27+
install_requires = [],
28+
include_package_data=True,
29+
zip_safe=False,
30+
)

0 commit comments

Comments
 (0)