forked from 418sec/konsave
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (32 loc) · 1.04 KB
/
setup.py
File metadata and controls
36 lines (32 loc) · 1.04 KB
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
from setuptools import setup, find_packages
def read_desc():
with open('README.md', 'r') as desc:
return desc.read()
setup(
name="Konsave",
use_scm_version=True,
setup_requires=['setuptools_scm'],
author="Prayag Jain",
author_email="prayagjain2@gmail.com",
description="A program that lets you save your Plasma configuration in an instant!",
long_description=read_desc(),
long_description_content_type="text/markdown",
url="https://www.github.com/prayag2/konsave/",
packages=find_packages(),
package_data={'config': ['conf.yaml']},
include_package_data=True,
python_requires='>=3.6',
install_requires=['PyYaml'],
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
'Programming Language :: Python'
],
entry_points={
'console_scripts': [
"konsave = konsave.__main__:main"
]
}
)