-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
36 lines (31 loc) · 956 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools >= 42.0","wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["GEMstack*"] # package names should match these glob patterns (["*"] by default)
[tool.setuptools.package-data]
GEMstack = ["*.yaml","*.yml","*.json"] #include config files in the knowledge directory
[project]
name = 'GEMstack'
version = '0.1'
description='GEM stack'
authors = [
{name='Kris Hauser', email='[email protected]' }
]
requires-python = ">=3.7"
readme = 'README.md'
license = {file='LICENSE'}
dependencies=['numpy',
'shapely',
'pyyaml',
'klampt'
]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Programming Language :: Python',
'License :: OSI Approved :: Apache Software License',
'Topic :: Communications',
]
[project.urls]
Repository = "https://www.github.com/krishauser/GEMstack"