-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (32 loc) · 1.06 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
import os
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="jet-sidebar",
version="0.2.7",
author="Raifran Lucas",
author_email="[email protected]",
description="Este pacote é uma modificação para o Django Jet",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/raifran1/jet-sidebar",
project_urls={
"Bug Tracker": "https://github.com/raifran1/jet-sidebar/issues",
},
classifiers=[
"Framework :: Django",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.7",
"License :: OSI Approved :: MIT License",
"Environment :: Web Environment",
"Operating System :: OS Independent",
],
zip_safe=False,
include_package_data=True,
packages=find_packages(),
python_requires=">=2.6",
django_requires=">=2.2",
jet_requires="==1.0.8",
)