forked from collective/collective.recipe.vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (63 loc) · 2.49 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# _*_ coding: utf-8 _*_
from setuptools import find_packages
from setuptools import setup
import os
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
long_description = "\n\n".join(
[
read("README.rst"),
read("src", "collective", "recipe", "vscode", "recipes.rst"),
read("CONTRIBUTORS.rst"),
read("CHANGES.rst"),
]
)
install_requires = ["setuptools", "zc.buildout", "zc.recipe.egg"]
tests_require = ["zope.testing", "zc.buildout[test]", "zc.recipe.egg"]
entry_point = "collective.recipe.vscode:Recipe"
uninstall_entry_point = "collective.recipe.vscode:uninstall"
entry_points = {
"zc.buildout": ["default = {0}".format(entry_point)],
"zc.buildout.uninstall": ["default = {0}".format(uninstall_entry_point)],
}
setup(
name="collective.recipe.vscode",
version="0.1.10.dev0",
description="Visual Studio Code configuration for buildout-based Python projects",
long_description=long_description,
# Get more from https://pypi.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Environment :: Web Environment",
"Development Status :: 4 - Beta",
"Framework :: Plone",
"Framework :: Plone :: 4.3",
"Framework :: Plone :: 5.0",
"Framework :: Plone :: 5.1",
"Framework :: Plone :: 5.2",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
],
keywords="python buildout plone vscode jedi sublimelinter buildout-recipe anaconda",
author="Md Nazrul Islam",
author_email="[email protected]",
url="https://github.com/nazrulworld/collective.recipe.vscode",
license="GPL version 2",
packages=find_packages("src", exclude=["ez_setup"]),
namespace_packages=["collective", "collective.recipe"],
package_dir={"": "src"},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
extras_require={"test": tests_require},
entry_points=entry_points,
)