-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 968 Bytes
/
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
#!/usr/bin/env python
from ensurepip import version
from pathlib import Path
import os
from setuptools import setup
from glob import glob
_dir = Path(__file__).resolve().parent
with open(f"{_dir}/README.md") as f:
long_desc = f.read()
# with open(f"{_dir}/VERSION") as f:
# version = f.read()
# __version__ = version
setup(
name="pagurus",
description="Wrapper for getting process information.",
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/tylern4/pagurus",
author="Nick Tyler",
author_email="[email protected]",
version='1.2',
scripts=glob('bin/*'),
py_modules=[],
install_requires=[
'psutil==5.8.0',
],
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
],
python_requires=">=3.7",
)