-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
37 lines (35 loc) · 1.1 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import setup
setup(
name='ipaperftest',
version='0.4.1',
namespace_packages=['ipaperftest', ],
package_dir={'': 'src'},
packages=[
'ipaperftest.core',
],
entry_points={
# creates bin/ipaperftest
'console_scripts': [
'ipaperftest = ipaperftest.core.main:main',
],
# subsystem registries
'ipaperftest.registry': [
'ipaperftest.plugins = ipaperftest.plugins.registry:registry',
],
# plugin modules for ipaperftest.plugins registry
'ipaperftest.plugins': [
'apitest = ipaperftest.plugins.apitest',
'authenticationtest = ipaperftest.plugins.authenticationtest',
'certissuetest = ipaperftest.plugins.certissuetest',
'enrollmenttest = ipaperftest.plugins.enrollmenttest',
'groupsizetest = ipaperftest.plugins.groupsizetest',
],
},
install_requires=[
'click',
],
classifiers=[
'Programming Language :: Python :: 3.8',
],
python_requires='!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*',
)