actu 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- actu-0.1.0/PKG-INFO +25 -0
- actu-0.1.0/README.md +18 -0
- actu-0.1.0/actu/__init__.py +0 -0
- actu-0.1.0/actu.egg-info/PKG-INFO +25 -0
- actu-0.1.0/actu.egg-info/SOURCES.txt +7 -0
- actu-0.1.0/actu.egg-info/dependency_links.txt +1 -0
- actu-0.1.0/actu.egg-info/top_level.txt +1 -0
- actu-0.1.0/pyproject.toml +14 -0
- actu-0.1.0/setup.cfg +4 -0
actu-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: actu
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Requires-Python: >=3.12
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# Actu
|
|
9
|
+
|
|
10
|
+
To start your Phoenix server:
|
|
11
|
+
|
|
12
|
+
* Run `mix setup` to install and setup dependencies
|
|
13
|
+
* Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`
|
|
14
|
+
|
|
15
|
+
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
|
|
16
|
+
|
|
17
|
+
Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).
|
|
18
|
+
|
|
19
|
+
## Learn more
|
|
20
|
+
|
|
21
|
+
* Official website: https://www.phoenixframework.org/
|
|
22
|
+
* Guides: https://hexdocs.pm/phoenix/overview.html
|
|
23
|
+
* Docs: https://hexdocs.pm/phoenix
|
|
24
|
+
* Forum: https://elixirforum.com/c/phoenix-forum
|
|
25
|
+
* Source: https://github.com/phoenixframework/phoenix
|
actu-0.1.0/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Actu
|
|
2
|
+
|
|
3
|
+
To start your Phoenix server:
|
|
4
|
+
|
|
5
|
+
* Run `mix setup` to install and setup dependencies
|
|
6
|
+
* Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`
|
|
7
|
+
|
|
8
|
+
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
|
|
9
|
+
|
|
10
|
+
Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).
|
|
11
|
+
|
|
12
|
+
## Learn more
|
|
13
|
+
|
|
14
|
+
* Official website: https://www.phoenixframework.org/
|
|
15
|
+
* Guides: https://hexdocs.pm/phoenix/overview.html
|
|
16
|
+
* Docs: https://hexdocs.pm/phoenix
|
|
17
|
+
* Forum: https://elixirforum.com/c/phoenix-forum
|
|
18
|
+
* Source: https://github.com/phoenixframework/phoenix
|
|
File without changes
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: actu
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Requires-Python: >=3.12
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
|
|
8
|
+
# Actu
|
|
9
|
+
|
|
10
|
+
To start your Phoenix server:
|
|
11
|
+
|
|
12
|
+
* Run `mix setup` to install and setup dependencies
|
|
13
|
+
* Start Phoenix endpoint with `mix phx.server` or inside IEx with `iex -S mix phx.server`
|
|
14
|
+
|
|
15
|
+
Now you can visit [`localhost:4000`](http://localhost:4000) from your browser.
|
|
16
|
+
|
|
17
|
+
Ready to run in production? Please [check our deployment guides](https://hexdocs.pm/phoenix/deployment.html).
|
|
18
|
+
|
|
19
|
+
## Learn more
|
|
20
|
+
|
|
21
|
+
* Official website: https://www.phoenixframework.org/
|
|
22
|
+
* Guides: https://hexdocs.pm/phoenix/overview.html
|
|
23
|
+
* Docs: https://hexdocs.pm/phoenix
|
|
24
|
+
* Forum: https://elixirforum.com/c/phoenix-forum
|
|
25
|
+
* Source: https://github.com/phoenixframework/phoenix
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
actu
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "actu"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Add your description here"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.12"
|
|
11
|
+
dependencies = []
|
|
12
|
+
|
|
13
|
+
[tool.setuptools]
|
|
14
|
+
packages = ["actu"]
|
actu-0.1.0/setup.cfg
ADDED