-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (36 loc) · 1.06 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
from setuptools import setup
with open('README.md', 'r', encoding='utf-8') as readme:
long_description = readme.read()
setup(
name='pictone',
version='1.0.0',
description="Fun image to Vectorscope audio CLI tool. With support for complex sequences.",
long_description_content_type="text/markdown",
long_description=long_description,
author='EterDelta',
license='MIT',
url='https://github.com/EterDelta/PicTone',
package_dir={'': 'src'},
packages=[
'pictone'
],
install_requires=[
'opencv-python',
'numpy'
],
entry_points={
'console_scripts': [
"pictone = pictone.cli:entry",
],
},
classifiers=[
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Education",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: Artistic Software",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
],
python_requires='>=3.6'
)