-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (37 loc) · 1.44 KB
/
setup.py
File metadata and controls
43 lines (37 loc) · 1.44 KB
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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version = '1.0.0'
setuptools.setup(
name='archaea',
packages=setuptools.find_packages(exclude=['archaea.extensions', 'archaea.format', 'test']),
version=version,
license='Apache 2.0',
description='Playground for geometry.',
long_description=long_description,
long_description_content_type="text/markdown",
readme='README.md',
author='Oğuzhan Koral',
author_email='oguzhankoral@gmail.com',
url='https://github.com/archaeans/archaea',
download_url=f'https://github.com/archaeans/archaea/archive/refs/tags/{version}.tar.gz',
keywords=['geometry', 'mesh', 'stl', 'triangulation'],
install_requires=[
'numpy',
'numpy-stl'
],
classifiers=[
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Multimedia :: Graphics :: 3D Modeling',
'Topic :: Scientific/Engineering :: Mathematics',
# Pick your license as you wish
'License :: OSI Approved :: Apache Software License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.11',
],
)