-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (32 loc) · 983 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
"""
Setup PylpChanged.
Copyright (C) 2017 The Pylp Authors.
This file is under the MIT License.
"""
from setuptools import setup, find_packages
from pylpchanged import __version__ as version
setup(
name = "pylpchanged",
version = version,
author = "Guillaume Gonnet",
author_email = "gonnet.guillaume97@gmail.com",
description = "A Pylp plugin for filtering unchanged files",
long_description = open("README.rst").read(),
license = "MIT",
keywords = "pylp gulp changed",
url = "https://github.com/pylp/pylpchanged",
packages = find_packages(),
install_requires = ["pylp"],
python_requires = ">=3.5",
classifiers = [
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"Topic :: Software Development :: Build Tools",
"Framework :: AsyncIO",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.5",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
],
)