Skip to content

Commit a15e2aa

Browse files
committed
add classifiers to setup.py (#183)
* add classifiers to setup.py * update whatsnew
1 parent eb5ea56 commit a15e2aa

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

docs/sphinx/source/whatsnew/v0.3.3.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ Bug fixes
2424
* Clarify that ``ModelChain`` and ``basic_chain`` currently only
2525
supports SAPM. (:issue:`177`)
2626
* Fix version number in 0.3.2 whatsnew file.
27+
* Add classifiers to setup.py. (:issue:`181`)
2728

2829

2930
Contributors

setup.py

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,21 @@
2424
MAINTAINER_EMAIL = '[email protected]'
2525
URL = 'https://github.com/pvlib/pvlib-python'
2626

27+
CLASSIFIERS = [
28+
'Development Status :: 4 - Beta',
29+
'License :: OSI Approved :: BSD License',
30+
'Operating System :: OS Independent',
31+
'Intended Audience :: Science/Research',
32+
'Programming Language :: Python',
33+
'Programming Language :: Python :: 2',
34+
'Programming Language :: Python :: 2.7',
35+
'Programming Language :: Python :: 3',
36+
'Programming Language :: Python :: 3.3',
37+
'Programming Language :: Python :: 3.4',
38+
'Programming Language :: Python :: 3.5',
39+
'Topic :: Scientific/Engineering',
40+
]
41+
2742
# check python version.
2843
if not sys.version_info[:2] in ((2,7), (3,3), (3,4), (3,5)):
2944
sys.exit('%s requires Python 2.7, 3.3, or 3.4' % DISTNAME)
@@ -72,4 +87,5 @@
7287
maintainer_email=MAINTAINER_EMAIL,
7388
license=LICENSE,
7489
url=URL,
90+
classifiers=CLASSIFIERS,
7591
**setuptools_kwargs)

0 commit comments

Comments
 (0)