Browse Source

Advertises support of Python 3.5, 3.6 in addition to 3.4

Adrien Panay 8 years ago
parent
commit
34099774e1
2 changed files with 11 additions and 3 deletions
  1. 3 3
      README.md
  2. 8 0
      tracim/setup.py

+ 3 - 3
README.md View File

1
-[![Build Status](https://travis-ci.org/tracim/tracim.svg?branch=master)](https://travis-ci.org/tracim/tracim) [![Coverage Status](https://img.shields.io/coveralls/tracim/tracim.svg)](https://coveralls.io/r/tracim/tracim) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/tracim/tracim/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/tracim/tracim/?branch=master)
1
+[![Build Status](https://travis-ci.org/tracim/tracim.svg?branch=master)](https://travis-ci.org/tracim/tracim) [![Coverage Status](https://img.shields.io/coveralls/tracim/tracim.svg)](https://coveralls.io/r/tracim/tracim) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/tracim/tracim/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/tracim/tracim/?branch=master) [![PyPI](https://img.shields.io/pypi/pyversions/tracim.svg)](https://pypi.python.org/pypi/tracim)
2
 
2
 
3
 # Tracim - Introduction #
3
 # Tracim - Introduction #
4
 
4
 
67
 
67
 
68
 Tracim is a web application:
68
 Tracim is a web application:
69
 
69
 
70
-* developed with python >=3.4.
70
+* developed with python 3.4, 3.5, 3.6
71
 * based on the [TurboGears](http://www.turbogears.org/) web framework.
71
 * based on the [TurboGears](http://www.turbogears.org/) web framework.
72
 * relying on [PostgreSQL](http://www.postgresql.org/) or [MySQL](https://www.mysql.fr/) or [sqlite](https://www.sqlite.org/) as the storage engine.
72
 * relying on [PostgreSQL](http://www.postgresql.org/) or [MySQL](https://www.mysql.fr/) or [sqlite](https://www.sqlite.org/) as the storage engine.
73
 
73
 
163
 
163
 
164
 ### Setting-up python virtualenv ###
164
 ### Setting-up python virtualenv ###
165
 
165
 
166
-_Reminder : Tracim is developed and tested using python3.4._
166
+_Reminder : Tracim is developed and tested using python3.4, python3.5, python3.6._
167
 
167
 
168
 We strongly recommend to use virtualenv as deployment environment. This ensure that there will be no conflict between system-wide python installation and Tracim required ones. To Create the virtual environment:
168
 We strongly recommend to use virtualenv as deployment environment. This ensure that there will be no conflict between system-wide python installation and Tracim required ones. To Create the virtual environment:
169
 
169
 

+ 8 - 0
tracim/setup.py View File

25
     use_setuptools()
25
     use_setuptools()
26
     from setuptools import setup, find_packages
26
     from setuptools import setup, find_packages
27
 
27
 
28
+classifiers = [
29
+    "License :: OSI Approved :: GNU Affero General Public License v3",
30
+    "Programming Language :: Python",
31
+    "Programming Language :: Python :: 3.4",
32
+    "Programming Language :: Python :: 3.5",
33
+    "Programming Language :: Python :: 3.6",
34
+]
35
+
28
 testpkgs=['WebTest >= 1.2.3',
36
 testpkgs=['WebTest >= 1.2.3',
29
                'nose',
37
                'nose',
30
                'coverage',
38
                'coverage',