-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
65 lines (60 loc) · 2.29 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
import os
from distutils.core import setup
from setuptools import find_packages
from bulk_signals import __version__
# User-friendly description from README.md
current_directory = os.path.dirname(os.path.abspath(__file__))
try:
with open(os.path.join(current_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
except Exception:
long_description = ""
setup(
# Name of the package
name="django-bulk-signals",
# Packages to include into the distribution
packages=find_packages(".", exclude=["tests"]),
# Start with a small number and increase it with
# every change you make https://semver.org
version=__version__,
# Chose a license from here: https: //
# help.github.com / articles / licensing - a -
# repository. For example: MIT
license="MIT",
# Short description of your library
description="A product aggregation function to a postgres database and makes it available with django",
# Long description of your library
long_description=long_description,
long_description_content_type="text/markdown",
# Your name
author="Axel Wegener",
# Your email
author_email="[email protected]",
# Either the link to your github or to your website
url="https://github.com/awmath/django-bulk-signals",
# Link from which the project can be downloaded
download_url="https://github.com/awmath/django-bulk-signals",
# List of keywords
keywords=["django"],
# List of packages to install with this one
install_requires=["django>3"],
python_requires=">=3",
# https://pypi.org/classifiers/
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
)