2015-08-30 23:43:54 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
__author__ = 'Xyene'
|
|
|
|
from setuptools import setup, find_packages
|
|
|
|
import os
|
|
|
|
|
2020-04-01 21:33:12 +00:00
|
|
|
with open(os.path.join(os.path.dirname(__file__), 'README.md')) as fh:
|
|
|
|
long_description = fh.read()
|
2015-08-30 23:43:54 +00:00
|
|
|
|
|
|
|
with open(os.path.join(os.path.dirname(os.path.realpath(__file__)), 'cube2sphere', 'version.py')) as version:
|
|
|
|
exec (version.read())
|
|
|
|
|
|
|
|
setup(name='cube2sphere',
|
|
|
|
version=__version__,
|
|
|
|
description='Utility to map 6 cube (cubemap, skybox) faces into an equirectangular (cylindrical projection, skysphere) map',
|
|
|
|
long_description=long_description,
|
2020-04-01 21:33:12 +00:00
|
|
|
long_description_content_type='text/markdown',
|
2015-08-30 23:43:54 +00:00
|
|
|
author='Tudor Brindus',
|
2020-04-01 21:16:46 +00:00
|
|
|
author_email='me@tbrindus.ca',
|
2015-08-30 23:43:54 +00:00
|
|
|
url='http://github.com/Xyene/cube2sphere',
|
|
|
|
packages=find_packages(),
|
|
|
|
package_data={
|
|
|
|
"cube2sphere": ["*.blend"],
|
|
|
|
},
|
|
|
|
entry_points={
|
|
|
|
'console_scripts': ['cube2sphere=cube2sphere.cube2sphere:main'],
|
|
|
|
},
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 3 - Alpha',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'Programming Language :: Python :: 3',
|
2020-04-01 21:16:46 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
2015-08-30 23:43:54 +00:00
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Topic :: Artistic Software'
|
|
|
|
],
|
2020-04-01 21:16:46 +00:00
|
|
|
)
|