Skip to content

Commit 091d028

Browse files
committed
update pyproject.toml
1 parent 958b4e4 commit 091d028

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

pyproject.toml

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ requires = ['setuptools', 'wheel']
33
build-backend = 'setuptools.build_meta'
44

55
[project]
6+
name = 'deepecho'
7+
description = 'Create sequential synthetic data of mixed types using a GAN.'
68
authors = [{ name = 'DataCebo, Inc.', email = '[email protected]' }]
79
classifiers = [
810
'Development Status :: 2 - Pre-Alpha',
@@ -16,15 +18,11 @@ classifiers = [
1618
'Programming Language :: Python :: 3.11',
1719
'Topic :: Scientific/Engineering :: Artificial Intelligence',
1820
]
19-
description = 'Create sequential synthetic data of mixed types using a GAN.'
2021
keywords = ['deepecho', 'DeepEcho']
21-
name = 'deepecho'
2222
version = '0.5.1.dev0'
2323
license = { text = 'BSL-1.1' }
2424
requires-python = '>=3.8,<3.12'
2525
readme = 'README.md'
26-
urls = { 'Homepage' = 'https://github.com/sdv-dev/DeepEcho' }
27-
2826
dependencies = [
2927
"numpy>=1.20.0,<2;python_version<'3.10'",
3028
"numpy>=1.23.3,<2;python_version>='3.10'",
@@ -37,23 +35,22 @@ dependencies = [
3735
"tqdm>=4.15,<5",
3836
]
3937

40-
[project.optional-dependencies]
38+
[project.urls]
39+
"Source Code"= "https://github.com/sdv-dev/SDGym/"
40+
"Issue Tracker" = "https://github.com/sdv-dev/SDGym/issues"
41+
"Twitter" = "https://twitter.com/sdv_dev"
42+
"Chat" = "https://bit.ly/sdv-slack-invite"
4143

44+
[project.optional-dependencies]
4245
test = [
4346
'pytest>=3.4.2',
4447
'pytest-cov>=2.6.0',
4548
'pytest-rerunfailures>=9.0.0,<10',
4649
'jupyter>=1.0.0,<2',
4750
'rundoc>=0.4.3,<0.5',
4851
]
49-
5052
dev = [
51-
# test
52-
'pytest>=3.4.2',
53-
'pytest-cov>=2.6.0',
54-
'pytest-rerunfailures>=9.0.0,<10',
55-
'jupyter>=1.0.0,<2',
56-
'rundoc>=0.4.3,<0.5',
53+
'deepecho[test]',
5754

5855
# general
5956
'setuptools<49.2',

0 commit comments

Comments
 (0)