-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
41 lines (39 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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name="modeemintternet",
description="Modeemi ry website",
use_scm_version=True,
setup_requires=["setuptools_scm"],
keywords="atk klubi uutiset club mate",
author=", ".join(["Modeemi ry"]),
author_email="[email protected]",
maintainer="Modeemi ry",
maintainer_email="[email protected]",
url="https://github.com/modeemi/website",
project_urls={
"Documentation": "https://github.com/modeemi/website/wiki",
"Source": "https://github.com/modeemi/website",
"Tracker": "https://github.com/modeemi/website/issues",
},
license="BSD",
package_dir={"modeemintternet": "modeemintternet"},
python_requires="~=3.12",
include_package_data=True,
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Communications",
],
zip_safe=False,
)