-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 891 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
28
29
30
31
32
33
34
35
36
37
38
39
40
"""Boilerplate for publishing Python packages.
See <https://packaging.python.org/guides/distributing-packages-using-setuptools/> for more information. # noqa: E501
"""
import setuptools
setuptools.setup(
name='lightning',
version='0.0.1',
description='',
# long_description='',
url='https://www.blacksuncollective.net',
# download_url='',
author='Dan Siddoway',
author_email='dan@blacksuncollective.net',
# maintainer='',
# maintainer_email='',
license='UNLICENSED',
classifiers=[
'Development Status :: 1 - Planning',
'Programming Language :: Python :: 3',
],
# keywords='',
packages=setuptools.find_packages(),
install_requires=[
'matplotlib',
'opencv-python',
],
# platforms=[
# '',
# ],
# entry_points={
# '': [
# '',
# ],
# }
)