-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (25 loc) · 999 Bytes
/
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
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
author="Ben Hagen",
author_email="[email protected]",
description="Phantom® highspeed camera control",
entry_points={"console_scripts": ["pfs_cam = pyphantom.cli.pfs_cam:cli"]},
install_requires=["psutil", "PyYAML", "netifaces", "cached_property", "click", "colorama"],
long_description=long_description,
long_description_content_type="text/markdown",
name="pyphantom",
packages=find_packages(),
include_package_data=True,
scripts=[],
setup_requires=["pytest-runner", "setuptools_scm"],
tests_require=["pytest", "tempdir", "pcapy"],
url="https://github.com/ottomatic-io/pyphantom",
use_scm_version=True,
classifiers=[
"Programming Language :: Python :: 3 :: Only",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
)