-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (32 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
import io
import os
from setuptools import setup
from setuptools import find_packages
# Encoding specification for PY3
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
# check and tweak version number
# can change author and email if necessary
setup(
name='ccRender',
# version number (will change later)
version='1.0.2',
# used own name and email, will change later if necessary
author='Cliffton Hicks',
author_email='cliffton@omnibond.com',
license='LGPL',
url='https://github.com/omnibond/ccRender',
description='Cloud-based Blender rendering addon',
long_description=description,
classifiers=[
# Due to version of python Blender uses,
# only the current Python version is supported.
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.10',
],
py_modules=['ccrender'],
packages=find_packages(exclude=['samples', 'tests']),
install_requires=['scp', 'pyperclip'],
python_requires='>=3.10',
)