-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 771 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 771 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from os import path
# Read the contents of requirements.txt
def parse_requirements(filename):
with open(filename, 'r') as f:
return f.read().splitlines()
setup(
name='django_export_excel',
version='1.0.5',
description='Django package for exporting data to Excel file with included admin integration',
author='Azizbek Xushnazarov',
author_email='azikdevapps@gmail.com',
url='https://github.com/AzikDeveloper/django-export-excel',
packages=find_packages(),
install_requires=parse_requirements('requirements.txt'),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)