-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (34 loc) · 1.18 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="tds-django",
version="4.2.2",
author="Etienne Cogels",
author_email="ecogels@users.noreply.github.com",
description="Django backend for SQL Server using tds",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ecogels/tds-django",
project_urls={
"Bug Tracker": "https://github.com/ecogels/tds-django/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Programming Language :: Python",
"Topic :: Database",
"Topic :: Software Development :: Libraries",
],
packages=find_packages(),
include_package_data=True,
package_data={'': ['sql/*.sql']},
python_requires=">=3.8",
)