-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 740 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 740 Bytes
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
from setuptools import setup, find_packages
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="madframe",
version="0.0.1",
url="https://github.com/6r17/madframe",
packages=find_packages(include=["madframe"]),
description="An event-based framework",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
entry_points={
"console_scripts": [
"madframe = madframe.command:run",
],
},
install_requires=[],
extras_require={
"dev": [
"pytest",
"pytest-mock",
"pytest-asyncio",
"pytest-coverage",
],
"doc": ["pdoc"],
},
)