File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 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+ )
You can’t perform that action at this time.
0 commit comments