-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 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, find_packages
import os
# thelibFolder = os.path.dirname(os.path.realpath(__file__))
# requirementPath = thelibFolder + '/requirements.txt'
# install_requires = []
# if os.path.isfile(requirementPath):
# with open(requirementPath) as f:
# install_requires = f.read().splitlines()
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='pyframes',
version='0.1',
description='Extracts frames from video or converts frames into video',
license='Apache',
author='John Eicher',
author_email='[email protected]',
packages=find_packages(),
download_url='https://github.com/saltchicken/pyframes',
maintainer_email='[email protected]',
# install_requires=install_requires,
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 1 - Beta',
'Topic :: Software Development :: Build Tools'
],
entry_points ={
'console_scripts': [
'pyframes = pyframes:main'
]
},
python_requires='>=3.5',
)