forked from samaid/game-of-life
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
44 lines (38 loc) · 927 Bytes
/
setup.cfg
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
44
[versioneer]
VCS = git
style = pep440
[aliases]
test=pytest
[metadata]
name = game-of-life-demo
version = 0.1.0
author = samaid
author_email = [email protected]
url = https://github.com/samaid/game-of-life
description = Game Of Life by Conway model implemented with numpy, numba, dpnp, numba-dpex
long_description = file: README.md, LICENSE
long_description_content_type = text/markdown
keywords = example, demo, numba, numpy, numba-dpex, dpnp
license = BSD 2-Clause License
classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
[options]
packages = find:
zip_safe = True
include_package_data = True
install_requires =
numpy
numba
numba-dpex
dpnp
[options.extras_require]
notebook = cv
dev =
black==23.1.1
flake8==6.0.0
[options.package_data]
* = README.md
[options.entry_points]
console_scripts =
game_of_life = game_of_life_demo.game_of_life:main