-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (44 loc) · 1.48 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
#!/usr/bin/env python
#:coding=utf-8:
from setuptools import setup, find_packages
from beproud.django.commons import VERSION
def read(filename):
with open(filename) as f:
return f.read()
setup(
name='beproud.django.commons',
version=VERSION,
description='Common utilities for Django',
long_description=read('README.rst') + read('ChangeLog.rst'),
long_description_content_type='text/x-rst',
author='BeProud Inc.',
author_email='[email protected]',
license='BSD',
url='http://www.beproud.jp/',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Plugins',
'Framework :: Django',
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.1',
'Framework :: Django :: 4.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'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',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries :: Python Modules',
],
include_package_data=True,
packages=find_packages(),
namespace_packages=['beproud', 'beproud.django'],
install_requires=[
'Django>=3.2',
],
test_suite='tests.main',
zip_safe=False,
)