|
2 | 2 |
|
3 | 3 | setup( |
4 | 4 | name="python-dotenv", |
5 | | - description=".env file settings for non-heroku setups", |
| 5 | + description="Add .env support to your django/flask apps in development and deployments", |
6 | 6 | version="0.1.0", |
7 | 7 | author="Saurabh Kumar", |
8 | 8 | |
|
16 | 16 | dotenv=dotenv:cli |
17 | 17 | ''', |
18 | 18 | classifiers=[ |
19 | | - 'Development Status :: 3 - Alpha', |
20 | | - 'Environment :: Web Environment', |
| 19 | + # As from https://pypi.python.org/pypi?%3Aaction=list_classifiers |
| 20 | + # 'Development Status :: 1 - Planning', |
| 21 | + # 'Development Status :: 2 - Pre-Alpha', |
| 22 | + # 'Development Status :: 3 - Alpha', |
| 23 | + 'Development Status :: 4 - Beta', |
| 24 | + # 'Development Status :: 5 - Production/Stable', |
| 25 | + # 'Development Status :: 6 - Mature', |
| 26 | + # 'Development Status :: 7 - Inactive', |
| 27 | + 'Programming Language :: Python', |
| 28 | + 'Programming Language :: Python :: 2', |
| 29 | + # 'Programming Language :: Python :: 2.3', |
| 30 | + # 'Programming Language :: Python :: 2.4', |
| 31 | + # 'Programming Language :: Python :: 2.5', |
| 32 | + 'Programming Language :: Python :: 2.6', |
| 33 | + 'Programming Language :: Python :: 2.7', |
| 34 | + 'Programming Language :: Python :: 3', |
| 35 | + 'Programming Language :: Python :: 3.0', |
| 36 | + 'Programming Language :: Python :: 3.1', |
| 37 | + 'Programming Language :: Python :: 3.2', |
| 38 | + 'Programming Language :: Python :: 3.3', |
21 | 39 | 'Intended Audience :: Developers', |
| 40 | + 'Intended Audience :: System Administrators', |
22 | 41 | 'License :: OSI Approved :: BSD License', |
23 | | - 'Programming Language :: Python :: 2.7', |
| 42 | + 'Operating System :: OS Independent', |
| 43 | + # 'Topic :: System :: Systems Administration', |
| 44 | + 'Topic :: Utilities' |
| 45 | + 'Environment :: Web Environment', |
| 46 | + # 'Framework :: Django', |
24 | 47 | ] |
25 | 48 | ) |
| 49 | + |
| 50 | +# (*) Please direct queries to the discussion group, rather than to me directly |
| 51 | +# Doing so helps ensure your question is helpful to other users. |
| 52 | +# Queries directly to my email are likely to receive a canned response. |
| 53 | +# |
| 54 | +# Many thanks for your understanding. |
0 commit comments