Skip to content

Commit 2b9f126

Browse files
authored
Merge pull request #6 from cdeil/classifiers
Add PyPI classifiers to setup.py
2 parents 27ebe08 + 1dc26d4 commit 2b9f126

File tree

2 files changed

+108
-2
lines changed

2 files changed

+108
-2
lines changed

.gitignore

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# Created by .ignore support plugin (hsz.mobi)
2+
### Python template
3+
# Byte-compiled / optimized / DLL files
4+
__pycache__/
5+
*.py[cod]
6+
*$py.class
7+
8+
# C extensions
9+
*.so
10+
11+
# Distribution / packaging
12+
.Python
13+
env/
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
*.egg-info/
26+
.installed.cfg
27+
*.egg
28+
29+
# PyInstaller
30+
# Usually these files are written by a python script from a template
31+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
32+
*.manifest
33+
*.spec
34+
35+
# Installer logs
36+
pip-log.txt
37+
pip-delete-this-directory.txt
38+
39+
# Unit test / coverage reports
40+
htmlcov/
41+
.tox/
42+
.coverage
43+
.coverage.*
44+
.cache
45+
nosetests.xml
46+
coverage.xml
47+
*,cover
48+
.hypothesis/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
58+
# Flask stuff:
59+
instance/
60+
.webassets-cache
61+
62+
# Scrapy stuff:
63+
.scrapy
64+
65+
# Sphinx documentation
66+
docs/_build/
67+
68+
# PyBuilder
69+
target/
70+
71+
# Jupyter Notebook
72+
.ipynb_checkpoints
73+
74+
# pyenv
75+
.python-version
76+
77+
# celery beat schedule file
78+
celerybeat-schedule
79+
80+
# dotenv
81+
.env
82+
83+
# virtualenv
84+
.venv/
85+
venv/
86+
ENV/
87+
88+
# Spyder project settings
89+
.spyderproject
90+
91+
# Rope project settings
92+
.ropeproject
93+
94+
# PyCharm project settings
95+
.idea

setup.py

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
setup(
1414
version=__version__,
15-
url="https://github.com/astrofrog/pytest-fits",
15+
url="https://github.com/astrofrog/pytest-arraydiff",
1616
name="pytest-arraydiff",
1717
description='pytest plugin to help with comparing array output from tests',
1818
long_description=long_description,
@@ -22,4 +22,15 @@
2222
author='Thomas Robitaille',
2323
author_email='[email protected]',
2424
entry_points={'pytest11': ['pytest_arraydiff = pytest_arraydiff.plugin']},
25-
)
25+
classifiers=[
26+
'Development Status :: 4 - Beta',
27+
'Framework :: Pytest',
28+
'Intended Audience :: Developers',
29+
'Topic :: Software Development :: Testing',
30+
'Programming Language :: Python',
31+
'Programming Language :: Python :: 2',
32+
'Programming Language :: Python :: 3',
33+
'Operating System :: OS Independent',
34+
'License :: OSI Approved :: BSD License',
35+
],
36+
)

0 commit comments

Comments
 (0)