-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
39 lines (36 loc) · 1.21 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
38
import setuptools
with open("README.md", "r",encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="mcvqoe-psud",
author="PSCR",
author_email="[email protected]",
description="Measurement code for the probability of successful delivery (PSuD)",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/usnistgov/psud",
packages=setuptools.find_namespace_packages(include=['mcvqoe.*']),
include_package_data=True,
use_scm_version={'write_to' : 'mcvqoe/psud/version.py'},
setup_requires=['setuptools_scm'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: Public Domain",
"Operating System :: OS Independent",
],
license='NIST software License',
install_requires=[
'mcvqoe-base',
'abcmrt16',
'pandas',
],
entry_points={
'console_scripts':[
'psud-sim=mcvqoe.psud.PSuD_simulate:main',
'psud-measure-1loc=mcvqoe.psud.PSuD_1way_1loc:main',
'psud-eval=mcvqoe.psud.PSuD_eval:main',
'psud-reprocess=mcvqoe.psud.PSuD_reprocess:main',
],
},
python_requires='>=3.6',
)