forked from JGreenlee/e-mission-common
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
30 lines (26 loc) · 934 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
[project]
name = "e-mission-common"
version = "0.6.0"
authors = [
{name = "Jack Greenlee", email = "[email protected]"},
{name = "K Shankari", email = "[email protected]"},
]
description = "A common library to share code between projects in the e-mission-platform. Written in Python and exposed as both Python and JavaScript."
readme = "README.md"
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.9",
"Programming Language :: JavaScript",
]
license = {text = "BSD-3-Clause"}
[project.urls]
Homepage = "https://github.com/JGreenlee/e-mission-common#readme"
Repository = "https://github.com/JGreenlee/e-mission-common.git"
Issues = "https://github.com/e-mission/e-mission-docs/issues"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"emcommon" = ["**"]