Skip to content
This repository has been archived by the owner on Jul 21, 2019. It is now read-only.

Commit

Permalink
refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
ousttrue committed Jan 17, 2012
1 parent fb973e2 commit f5c2de3
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 28 deletions.
2 changes: 1 addition & 1 deletion setup.cfg.py2
@@ -1,5 +1,5 @@
[nosetests] [nosetests]
verbosity = 3 verbosity = 3
#detailed-errors = 1 #detailed-errors = 1
exclude-dir=blender25-meshio exclude-dir=blender26-meshio
#color=1 #color=1
39 changes: 12 additions & 27 deletions setup.py
@@ -1,21 +1,11 @@
#!/usr/bin/env python #!/usr/bin/env python
# coding: utf-8 # coding: utf-8


from setuptools import setup from setuptools import setup, find_packages
import sys import sys
import os import os
import shutil import shutil


name='pymeshio'
version='2.4.2'
short_description='3d model io library for mqo, pmd, pmx, vmd and vpd'
long_description=open('README.rst').read()

classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: zlib/libpng License',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
]


# copy pymeshio dir for blender26 plugin # copy pymeshio dir for blender26 plugin
PYMESHIO_DIR_IN_BLENDER26='blender26-meshio/pymeshio' PYMESHIO_DIR_IN_BLENDER26='blender26-meshio/pymeshio'
Expand All @@ -26,26 +16,21 @@




setup( setup(
name=name, name='pymeshio',
version=version, version='2.4.2',
description=short_description, description='3d model io library for mqo, pmd, pmx, vmd and vpd',
long_description=long_description, long_description=open('README.rst').read(),
classifiers=classifiers, classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: zlib/libpng License',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
],
keywords=['mqo', 'pmd', 'pmx', 'vmd', 'vpd', 'mmd', 'blender'], keywords=['mqo', 'pmd', 'pmx', 'vmd', 'vpd', 'mmd', 'blender'],
author='ousttrue', author='ousttrue',
author_email='ousttrue@gmail.com', author_email='ousttrue@gmail.com',
url='http://meshio.sourceforge.jp/', url='http://pypi.python.org/pypi/pymeshio/',
license='zlib', license='zlib',
#package_dir={ packages=find_packages(),
# 'pymeshio': 'blender25-meshio/pymeshio'
# },
packages=[
'pymeshio',
'pymeshio.mqo',
'pymeshio.pmd',
'pymeshio.pmx',
'pymeshio.vmd',
],
test_suite='nose.collector', test_suite='nose.collector',
tests_require=['Nose'], tests_require=['Nose'],
zip_safe = (sys.version>="2.5"), # <2.5 needs unzipped for -m to work zip_safe = (sys.version>="2.5"), # <2.5 needs unzipped for -m to work
Expand Down

0 comments on commit f5c2de3

Please sign in to comment.