-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 856 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
#!/usr/bin/env python
# Copyright (c) 2019, Ekene Izukanne
# Xpaper is under the MIT license. See the LICENSE file at the root of the project for the detailed license terms.
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
setuptools.setup(
name="Xpaper",
version="0.2.0",
author="Ekene Izukanne",
author_email="[email protected]",
description="Cross platform library for managing desktop wallpaper",
license = "MIT",
keyword = "wallpaper",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spatocode/Xpaper",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)