-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
66 lines (53 loc) · 1.6 KB
/
setup.py
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
"""
## How to use
```shell
# Default syntax
$ py llamalab <module> <command> <parameters>
# Type -- --help on any command to get help text
$ py llamalab # To get help
```
```python
import llamalab as llama
llama.Cloud.send(**kwargs)
```
## Easy to Install
```shell
# Using git
$ git clone https://github.com/SerTor-Automate/llamalab
$ cd llamalab
$ pip install -r requirements.txt
$ py setup.py install
```
## Contributing
You can propose a feature request opening an issue, or a pull request.
Here is a list of llamalab contributors:
<a href="https://github.com/SerTor-Automate/llamalab/graphs/contributors">
<img src="https://contributors-img.web.app/image?repo=SerTor-Automate/llamalab" />
</a>
"""
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="llamalab",
version="0.1",
author="Adrián Toral",
author_email="adriantoral@sertor.es",
description="Llamalab python modules",
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Website": "https://github.com/SerTor-Automate/llamalab",
"Issues": "https://github.com/SerTor-Automate/llamalab/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
packages=["llamalab"],
package_dir={"": "src"},
install_requires=["fire~=0.4.0", "setuptools~=47.1.0", "requests~=2.24.0"],
python_requires=">=3.6",
keywords='python, python3',
)