1+ """
2+
3+ (c) 2019 by simpleanalytics.io. All rights reserved
4+
5+ This program is distributed in the hope that it will be useful, but is provided AS IS with ABSOLUTELY NO WARRANTY;
6+ The entire risk as to the quality and performance of the program is with you. Should the program prove defective,
7+ you assume the cost of all necessary servicing, repair or correction. In no event will any of the developers, or
8+ any other party, be liable to anyone for damages arising out of the use or inability to use the program.
9+ You may copy and distribute copies of the Program, provided that you keep intact all the notices that refer to the
10+ absence of any warranty.
11+
12+ """
13+ from setuptools import setup
14+
15+
16+ setup (
17+ name = 'simpleanalytics' ,
18+ classifiers = [
19+ "Development Status :: 3 - Alpha" ,
20+ "Intended Audience :: Developers" ,
21+ "Environment :: Plugins" ,
22+ "License :: OSI Approved :: MIT License" ,
23+ # supported python versions
24+ "Programming Language :: Python" ,
25+ "Programming Language :: Python :: 3.5" ,
26+ "Programming Language :: Python :: 3.6" ,
27+ "Programming Language :: Python :: 3.7" ,
28+ "Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Page Counters" ,
29+ "Framework :: Django :: 1.8" ,
30+ "Framework :: Django :: 1.9" ,
31+ "Framework :: Django :: 2.0" ,
32+ "Framework :: Django :: 2.1" ,
33+ "Framework :: Django :: 2.2" ,
34+ ],
35+ version = '0.1.4' ,
36+ description = 'simpleanalytics templatetags for Django' ,
37+ packages = ['simpleanalytics' , 'simpleanalytics.templatetags' , ],
38+ author = 'simpleanalytics.io' ,
39+ author_email = 'support@mail.simpleanalytics.io' ,
40+ )
0 commit comments