forked from Fabric-Development/fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (40 loc) · 1.23 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
35
36
37
38
39
40
41
from setuptools import setup, find_packages
setup(
name="fabric",
version="0.0.2",
description="Next-Gen python framework for creating system widgets on *Nix systems!",
long_description=open("README.md").read(),
keywords=[
"widgets",
"gtk",
"linux",
"pygobject",
"bar",
"statusbar",
"panel",
"dock",
],
classifiers=["Programming Language :: Python"],
url="https://github.com/Fabric-Development/fabric.git",
project_urls={
"Website": "https://ffpy.org",
"Documentation": "https://wiki.ffpy.org",
"Website (mirror)": "https://fabric-widgets.org",
"Documentation (mirror)": "https://wiki.fabric-widgets.org",
"Source": "https://github.com/Fabric-Development/fabric",
"Bug Tracker": "https://github.com/Fabric-Development/fabric/issues",
"Changelog": "https://github.com/Fabric-Development/fabric/blob/master/CHANGELOG.md",
},
packages=find_packages(),
install_requires=[
"click",
"pycairo",
"PyGObject",
"loguru",
],
python_requires=">=3.11",
extras_require={
"system-status": ["psutil"],
},
package_data={"*": ["*.xml", "*.js"]},
)