-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (45 loc) · 1.58 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
from setuptools import setup, find_packages
about = {}
with open("README.md", "r",encoding='UTF-8') as readme_file:
readme = readme_file.read()
NAME = "excel-json"
DESCRIPTION = ("Read & Write Excel fro python. Basic file operations and Excel - Json converter for python.")
AUTHOR = "Emre MENTESE"
URL = "https://github.com/emrementese/excel-json"
VERSION = "0.1.0"
URLS = {
'MyWebsite': 'http://www.emrementese.com/',
'Github': 'https://github.com/emrementese',
'Source': 'https://github.com/emrementese/excel-json',
'Download': 'https://github.com/emrementese/excel-json',
}
setup(
name=NAME,
version=VERSION,
license="MIT",
description=DESCRIPTION,
long_description=readme,
long_description_content_type="text/markdown",
author=AUTHOR,
project_urls = URLS,
url=URL,
keywords=["Excel", "Json","Python","Convert","Dictionary","Excel Convert","Write Excel","Read Excel","Write","Read","File"],
install_requires=[
"pandas",
],
packages=find_packages('src'),
package_dir={'':'src'},
classifiers=[
"Intended Audience :: Developers & Students",
"Intended Audience :: Financial and Insurance Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
],
python_requires=">=3.6",
)