-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (26 loc) · 939 Bytes
/
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
from setuptools import find_packages, setup
with open("./README.md", encoding='utf-8') as in_:
setup(
name='xlsxwriter-celldsl',
version='0.6.0',
packages=find_packages(where='src'),
package_dir={
"": "src"
},
url='https://github.com/DeltaEpsilon7787/xlsxwriter-celldsl',
license='MIT',
author='DeltaEpsilon7787',
author_email='[email protected]',
description='A library to write scripts for generating Excel files using XlsxWriter in a more structured '
'manner by avoiding dealing with absolute coordinates.',
long_description=in_.read(),
long_description_content_type="text/markdown",
python_requires='>=3.6',
install_requires=[
"attrs",
"xlsxwriter",
],
extras_require={
'testing': ['pytest', 'pytest-mock']
},
)