-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
42 lines (38 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""
Copyright (c) 2022 Lukas Meyer
Licensed under the MIT License.
See LICENSE file for more information.
"""
# Built-in/Generic Imports
import setuptools
from setuptools import find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'Readme.md'), encoding='utf-8') as f:
long_description = f.read()
with open('requirements.txt') as f:
install_requires = f.read().strip().split('\n')
setuptools.setup(
name='pc_skeletor',
version='1.0.1',
description='Point Cloud Skeletonizer',
license="MIT",
long_description=long_description,
long_description_content_type="text/markdown",
author='Lukas Meyer',
author_email='lukas.meyer@fau.de',
url="https://github.com/meyerls/PC-Skeletor",
packages=find_packages(),
install_requires=install_requires, # external packages as dependencies
python_requires='>=3.8',
classifiers=[
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
],
zip_safe=False,
)