-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·57 lines (50 loc) · 1.37 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
from setuptools import setup, find_packages
import pathlib
# Get path to parent folder
here = pathlib.Path(__file__).parent.resolve()
# long_description = README.md
long_description = (here / 'README.md').read_text(encoding='utf-8')
github = 'https://github.com/emersonfelipesp/netbox-plugins-store'
# Netbox Plugins Store dependencies
requires = [
'Django',
'Jinja2',
'Markdown'
]
dev_requires = [
'pytest>=3.7',
'check-manifest',
'twine',
'setuptools',
'wheel'
]
setup(
name="netbox-plugins-store",
version="0.0.1",
author="Emerson Felipe and Marcos Vella",
author_email="emerson.felipe@nmultifibra.com.br",
description="Netbox Plugins Store",
url='https://github.com/emersonfelipesp/netbox-plugins-store',
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"Framework :: Django",
"Operating System :: Unix",
"License :: OSI Approved :: Apache Software License",
],
keywords="netbox netbox-plugin plugin",
project_urls={
'Source': github,
},
packages=find_packages(),
include_package_data=True,
package_data={
"": ['*','*/*','*/*/*'],
},
install_requires=requires,
extras_require={
"dev": dev_requires,
},
python_requires= '>=3.6',
)