-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="31",
version="2.2",
author="Kavi Gupta",
author_email="[email protected]",
description="Runs code in a specified environment in the background and notifies you when it is done.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kavigupta/31",
packages=setuptools.find_packages(),
entry_points={
"console_scripts": ["31=s31.main:main"],
},
classifiers=[
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
python_requires=">=3.5",
install_requires=[
"attrs>=20.1.0",
"display-timedelta==1.1",
"filelock==3.0.12",
"appdirs>=1.4.4",
"permacache>=3.6.1",
],
)