-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·40 lines (36 loc) · 1.15 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
#!/usr/bin/env python
import os
import setuptools
README = ''
readme_path = os.path.join(os.path.dirname(__file__), 'README.md')
if os.path.exists(readme_path):
with open(readme_path) as readme:
README = readme.read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setuptools.setup(
name='django-requestlog',
version='1.1.8',
description='Middleware to log http requests to postgresql',
long_description=README,
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
long_description_content_type="text/markdown",
url="https://github.com/muehlemann-popp/requestlog",
include_package_data=True,
install_requires=[
'Django>=3.1',
'httplib2',
'psycopg2-binary',
],
tests_require=['coverage'],
classifiers=[
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development'
],
author='Silvan Mühlemann',
author_email='[email protected]',
license='MIT',
)