-
Notifications
You must be signed in to change notification settings - Fork 28
/
setup.py
32 lines (29 loc) · 1.01 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
"""Describe the distribution to distutils."""
# Import third-party modules
from setuptools import find_packages
from setuptools import setup
# Import local modules
import dayu_path
setup(
name='dayu_path',
package_dir={'': '.'},
packages=find_packages('.'),
url='https://github.com/phenom-films/dayu_path',
license='MIT',
author=dayu_path.__author__,
version=dayu_path.__version__,
author_email='[email protected]',
description=('a python path lib optimized for Movie industry. Support '
'scan for sequence files, extract frame count and many '
'other useful functions.'),
long_description=open('README.rst').read(),
classifiers=[
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
setup_requires=['pytest-runner'],
tests_require=['pytest']
)