Преглед изворни кода

Advertises support of Python 3.5, 3.6 in addition to 3.4

Adrien Panay пре 7 година
родитељ
комит
34099774e1
2 измењених фајлова са 11 додато и 3 уклоњено
  1. 3 3
      README.md
  2. 8 0
      tracim/setup.py

+ 3 - 3
README.md Прегледај датотеку

@@ -1,4 +1,4 @@
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 3
 # Tracim - Introduction #
4 4
 
@@ -67,7 +67,7 @@ Tracim is licensed under the terms of the
67 67
 
68 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 71
 * based on the [TurboGears](http://www.turbogears.org/) web framework.
72 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,7 +163,7 @@ To install frontend dependencies listed in the file package.json, proceed as fol
163 163
 
164 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 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 Прегледај датотеку

@@ -25,6 +25,14 @@ except ImportError:
25 25
     use_setuptools()
26 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 36
 testpkgs=['WebTest >= 1.2.3',
29 37
                'nose',
30 38
                'coverage',