Skip to content

Commit

Permalink
Standard additions to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jzuhone committed Feb 5, 2025
1 parent 4ed8305 commit 35591e1
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/usr/bin/env python
from setuptools import setup

try:
from testr.setup_helper import cmdclass
except ImportError:
cmdclass = {}

setup(name='acispy',
packages=['acispy'],
use_scm_version=True,
Expand All @@ -15,4 +20,8 @@
'Operating System :: OS Independent',
'Programming Language :: Python :: 3'
],
include_package_data=True,
tests_require=["pytest"],
zip_safe=False,
cmdclass=cmdclass,
)

0 comments on commit 35591e1

Please sign in to comment.