forked from sifanexisted/micrometer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 659 Bytes
/
Copy pathsetup.py
File metadata and controls
26 lines (22 loc) · 659 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
import os
_CURRENT_DIR = os.path.abspath(os.path.dirname(__file__))
with open("requirements.txt") as f:
required = f.read().splitlines()
try:
README = open(os.path.join(_CURRENT_DIR, "README.md"), encoding="utf-8").read()
except IOError:
README = ""
setup(
name="micrometer",
version="",
url=" ",
author="Sifan Wang",
packages=find_packages(),
python_requires=">=3.8",
install_requires=required,
license="Apache 2.0",
description=" ",
long_description=open(os.path.join(_CURRENT_DIR, "README.md")).read(),
long_description_content_type="text/markdown",
)