-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
44 lines (42 loc) · 1.5 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
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(name='hfexcel',
version='0.0.17',
description='human friendly excel creation in python',
long_description=readme(),
long_description_content_type='text/markdown',
classifiers=[
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Text Processing :: Linguistic',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='xlsxwriter xlsx excel json writing python wrapper',
url='https://github.com/ebsaral/hfexcel',
author='Emin Bugra Saral',
author_email='eminbugrasaral@me.com',
license='BSD',
packages=['hfexcel'],
install_requires=[
'xlsxwriter',
'jsonschema==2.6.0',
'pytest',
],
include_package_data=True,
zip_safe=False,
project_urls={
'Documentation': 'https://github.com/ebsaral/hfexcel',
'Funding': 'https://github.com/ebsaral/hfexcel',
'Source': 'https://github.com/ebsaral/hfexcel',
},
tests_require=["pytest"],
)