-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 687 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 687 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
from setuptools import setup, find_packages
from beatserver import __version__
def get_long_description():
"""
Return the README.
"""
with open("README.md", encoding="utf8") as f:
return f.read()
setup(
name="beatserver",
version=__version__,
url="https://github.com/rajasimon/beatserver",
author="Raja Simon",
author_email="rajasimon@icloud.com",
description="Beat Server is is a scheduler",
long_description=get_long_description(),
long_description_content_type="text/markdown",
license="MIT",
packages=find_packages(),
install_requires=["channels>=1.1.8.1", "croniter>=0.3.30"],
include_package_data=True,
)