... | ... |
@@ -17,9 +17,7 @@ version strings everywhere. |
17 | 17 |
|
18 | 18 |
This is the same problem that Versioneer solves, but Miniver is less |
19 | 19 |
than 200 lines of code, whereas Versioneer is over 2000. The tradeoff |
20 |
-is that Miniver only works with Git and Python 3.5 (or above), and has only been |
|
21 |
-tested on Debian Linux and Mac OSX (automated with Travis) and for Windows |
|
22 |
-on Appveyor. |
|
20 |
+is that Miniver only works with Git and Python 3.5 (or above). |
|
23 | 21 |
|
24 | 22 |
Support for Python 2 is not a goal, as Python 2 is fast approaching its |
25 | 23 |
end of life (2020), and we want to encourage people to use Python 3! |
... | ... |
@@ -40,6 +40,12 @@ setup( |
40 | 40 |
'Topic :: Software Development :: Version Control :: Git', |
41 | 41 |
'Intended Audience :: Developers', |
42 | 42 |
'Programming Language :: Python :: 3 :: Only', |
43 |
+ 'Programming Language :: Python :: 3.5', |
|
44 |
+ 'Programming Language :: Python :: 3.6', |
|
45 |
+ 'Programming Language :: Python :: 3.7', |
|
46 |
+ 'Operating System :: POSIX :: Linux', |
|
47 |
+ 'Operating System :: MacOS :: MacOS X', |
|
48 |
+ 'Operating System :: Microsoft :: Windows', |
|
43 | 49 |
], |
44 | 50 |
packages=find_packages('.'), |
45 | 51 |
cmdclass=cmdclass, |