forked from ABI-Software/MeshParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (24 loc) · 923 Bytes
/
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
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'src', 'meshparser', 'version.txt')) as f:
line = f.readline()
version = line.strip()
dependencies = []
long_description = """A Python library that parses different mesh format files into a Python dict
ready for consumption by other libraries.
"""
setup(name=u'meshparser',
version=version,
description='A Small Python library for parsing files that describe a mesh.',
long_description=long_description,
classifiers=[],
author=u'Hugh Sorby',
author_email='h.sorby@auckland.ac.nz',
url='https://github.com/ABI-Software/MeshParser',
license='Apache',
packages=find_packages('src', exclude=['tests', 'tests.*', ]),
package_dir={'': 'src'},
package_data={'': ['version.txt']},
zip_safe=True,
install_requires=dependencies,
)