-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (38 loc) · 1.26 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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="lionsc",
version="2.1.0",
author="Diogo Ferreira",
author_email="[email protected]",
description="LIONS is a communication protocol coupled with a compiler (lionsc), specifically designed for low-bandwidth IoT mesh and ad hoc networks.",
long_description=long_description,
long_description_content_type="text/markdown",
package_data={
"lionsc": [
"code_generation/cpp/templates/*.jinja",
"code_generation/python/templates/*.jinja",
"code_generation/js/templates/*.jinja",
"code_generation/ts/templates/*.jinja",
]
},
url="https://github.com/ItsNotSoftware/lions",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=find_packages(),
install_requires=["pydantic", "pyyaml", "jinja2", "pytest", "colorama"],
extras_require={
"dev": ["twine>=4.0.2"],
},
include_package_data=True,
entry_points={
"console_scripts": [
"lionsc = lionsc.main:main",
],
},
)