Skip to content

Commit

Permalink
updated package info
Browse files Browse the repository at this point in the history
  • Loading branch information
lejafar committed Aug 12, 2018
1 parent 38e8652 commit 53fb70e
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
1 change: 1 addition & 0 deletions openctm/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '1.0.4'
19 changes: 14 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
from setuptools import setup, Extension
import os

exec(open('openctm/version.py').read())

long_description = ''
if os.path.exists('README.md'):
with open('README.md', 'r') as f:
long_description = f.read()

setup(
name='python-openctm',
version='1.0.3',
version=__version__,
description='Python Interface for the OpenCTM File Format',
long_description='Python Interface for the OpenCTM File Format',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/lejafar/python-openctm',
author='Rafael Hautekiet',
author_email='[email protected]',
author_email='[email protected]',
license='zlib License',
ext_modules=[Extension('_foo', ['stub.cc'])],
packages=['openctm'],
Expand All @@ -18,7 +27,7 @@
install_requires=[
'numpy>=1.14.2',
],
classifiers=(
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
Expand All @@ -28,5 +37,5 @@
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: zlib/libpng License",
"Operating System :: OS Independent",
)
]
)

0 comments on commit 53fb70e

Please sign in to comment.