Skip to content

Commit

Permalink
Merge pull request #231 from cdeil/classifiers
Browse files Browse the repository at this point in the history
Add classifiers to setup.py and drop Python 2.6 support
  • Loading branch information
cdeil committed Jan 5, 2015
2 parents 26ed0a7 + 30a9a4f commit 51fe21b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ matrix:
env: ASTROPY_VERSION=development SETUP_CMD='build_sphinx -w'

# Try Astropy development version
- python: 2.7
env: ASTROPY_VERSION=development SETUP_CMD='test'
- python: 3.3
env: ASTROPY_VERSION=development SETUP_CMD='test'

Expand Down
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,22 @@
license=LICENSE,
url=URL,
long_description=LONG_DESCRIPTION,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: C',
'Programming Language :: Cython',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Scientific/Engineering :: Astronomy',
],
cmdclass=cmdclassd,
zip_safe=False,
use_2to3=False,
Expand Down

0 comments on commit 51fe21b

Please sign in to comment.