-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (38 loc) · 1.22 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
"""
Installation file for python avs module
"""
from setuptools import setup, find_packages
from pathlib import Path
name = 'avorion-obj-exporter'
module = 'avorion_obj_exporter'
version = '0.1.2'
requirements = ['appdirs', 'argparse', 'pathlib', 'numpy', 'vtk', 'pyvista']
readme = (Path(__file__).resolve().parent / 'README.md').read_text(encoding='utf-8')
setup(
name=name,
version=version,
description='Avorion ShipXML Exporter based on pyVista/VTK',
long_description=readme,
long_description_content_type='text/markdown',
url='https:github.com/jgerst/avorion-obj-exporter',
author='Janick Gerstenberger',
entry_points= {
'console_scripts': [
f'{name} = {module}.app:main',
f'aoe = {module}.app:main',
],
},
keywords='avorion exporter',
install_requires=requirements,
python_requires='>=3.7',
classifiers=[
'Development Status :: 3 - Alpha',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: MacOS',
'Programming Language :: Python :: 3.7',
'Topic:: Games/Entertainment',
],
package_dir={'': 'src'},
packages=find_packages(where='src')
)