-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (29 loc) · 871 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (29 loc) · 871 Bytes
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
from setuptools import find_packages, setup
def readRequirements():
a = []
with open("requirements.txt") as f:
for line in f.readlines():
if not line.startswith("#"):
a.append(line.strip())
return a
setup(
name="easyfeh",
version="0.1.4",
description="An easy to use feh wrapper with cool features",
author="Shibam Roy",
author_email="royshibam9826@gmail.com",
url="https://github.com/ShibamRoy9826/easyfeh",
packages=find_packages(),
install_requires=readRequirements(),
entry_points={
"console_scripts": [
"easyfeh = easyfeh.easyfeh:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
)