-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
37 lines (36 loc) · 1.36 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
#!/usr/bin/env python
from setuptools import setup
setup(
name="django-calculation",
packages=["calculation"],
include_package_data=True,
version="1.0.0",
description="A Django app to make simple calculations in your django forms",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Blas Fernandez",
author_email="blasferna@gmail.com",
url="https://github.com/blasferna/django-calculation",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
'Programming Language :: Python',
'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',
],
install_requires=["Django>=2.2"],
python_requires=">=3.6",
)