-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 1.18 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (39 loc) · 1.18 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
37
38
39
40
41
from setuptools import setup, find_packages
with open("README.md", encoding="utf-8") as f:
long_description = f.read()
setup(
name="inventree-auto-sponsor",
version="1.0.0",
author="0neShot",
author_email="",
description=(
"Automatically creates and synchronises SupplierPart entries "
"for ManufacturerParts whose manufacturer is in a configured sponsor list."
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/0neShot/AutoSponsor",
license="MIT",
packages=find_packages(),
package_data={
"inventree_auto_sponsor": [
"templates/**/*.html",
"static/**/*.js",
"static/**/*.css",
],
},
entry_points={
"inventree_plugins": [
"AutoSponsorPlugin = inventree_auto_sponsor.plugin:AutoSponsorPlugin"
]
},
install_requires=[],
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django",
"Topic :: Office/Business",
],
)