Skip to content

Commit ba8c629

Browse files
author
Saurabh Kumar
committed
add bumpversion and update setup.py
1 parent ffd0c0d commit ba8c629

File tree

3 files changed

+40
-4
lines changed

3 files changed

+40
-4
lines changed

.bumpversion.cfg

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[bumpversion]
2+
current_version = 0.1.0
3+
commit = True
4+
tag = True
5+
6+
[bumpversion:file:setup.py]

requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
flake8>=2.2.3
22
pytest>=2.6.2
33
sh>=1.09
4+
bumpversion

setup.py

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
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",
66
version="0.1.0",
77
author="Saurabh Kumar",
88
author_email="[email protected]",
@@ -16,10 +16,39 @@
1616
dotenv=dotenv:cli
1717
''',
1818
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',
2139
'Intended Audience :: Developers',
40+
'Intended Audience :: System Administrators',
2241
'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',
2447
]
2548
)
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

Comments
 (0)