-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 807 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
import io
from os import path
from setuptools import setup
current_dir = path.abspath(path.dirname(__file__))
with io.open(path.join(current_dir, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='ccxmeshreader',
description='Reads a mesh from CalcluliX input (.inp) files.',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/gbroques/ccxmeshreader',
author='G Roques',
version='0.3.2',
packages=['ccxmeshreader'],
install_requires=[],
classifiers=[
# Full List: https://pypi.org/pypi?%3Aaction=list_classifiers
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
'Programming Language :: Python :: 3 :: Only'
]
)