-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 959 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
#!/usr/bin/env python3
from setuptools import setup
# this is deprecated. use pyproject.toml
class About:
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
title = "splashpaper"
description = "Wallpaper manager with unsplash.com integration"
version = "1.3.3"
author = "evtn"
author_email = "g@evtn.ru"
license = "MIT"
url = "https://github.com/evtn/splashpaper"
with open("README.md") as file:
long_description = file.read()
setup(
name="splashpaper",
version=About.version,
author=About.author,
author_email=About.author_email,
url=About.url,
py_modules=["splashpaper"],
description=About.description,
long_description=long_description,
long_description_content_type='text/markdown',
license=About.license,
install_requires=["requests"],
classifiers=About.classifiers,
python_requires=">=3.6",
)