forked from shadawck/lrjson
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (32 loc) · 1007 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
38
39
from setuptools import setup
import pathlib
with open("README.md", "r") as fh:
long_desc = fh.read()
with open('requirements.txt') as f:
required = f.read().splitlines()
# This call to setup() does all the work
setup(
name="lrjson",
version="0.0.1",
description="Convert Lightroom Template file .ltemplate into manipulable JSON file",
keywords='lightroom json lrtemplate photo filter preset',
long_description=long_desc,
long_description_content_type="text/markdown",
url="https://github.com/remiflavien1/lrjson",
author="shadawck",
author_email="[email protected]",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
],
packages=["lrjson"],
include_package_data=True,
install_requires=required,
entry_points={
"console_scripts": [
"lrjson=lrjson.__main__:main",
]
},
)