Skip to content

Commit

Permalink
Fix setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Jan 8, 2019
1 parent d28dd57 commit 6929789
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

import os
from codecs import open
from setuptools import setup, find_packages
from distutils.core import setup, Extension
from setuptools import find_packages
import sys

with open(os.path.join('pyxcp', 'version.py'), 'r') as f:
Expand Down Expand Up @@ -34,15 +35,15 @@ def packagez(base):

doc_requires = ['numpydoc', 'sphinxcontrib-napoleon'],
package_dir = {'tests': 'pyxcp/tests'},
tests_require=["pytest", "pytest-runner"],
test_suite = "pyxcp.tests",
license='GPLv2',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
tests_require=["pytest", "pytest-runner"],
test_suite = "pyxcp.tests",
license='GPLv2',
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',

# Indicate who your project is intended for
Expand Down

0 comments on commit 6929789

Please sign in to comment.