forked from payscale/fables
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
44 lines (38 loc) · 1.27 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
import setuptools
# Note: It would be nice to have a single source of truth for the version; (it exists here and in
# fables/__init__.py). Here is a nice reference of different ways this can be achieved:
# https://packaging.python.org/guides/single-sourcing-package-version/
VERSION = "1.2.5"
with open("README.md") as f:
long_description = f.read()
setuptools.setup(
name="fables",
version=VERSION,
description="(F)ile T(ables)",
long_description=long_description,
long_description_content_type="text/markdown",
license="Apache 2.0",
packages=["fables"],
url="https://github.com/payscale/fables",
author="PayScale, Inc.",
author_email="[email protected]",
classifiers=[
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering",
],
install_requires=[
"pandas==1.0.1",
"cchardet==2.1.7",
"chardet==3.0.4",
"clevercsv==0.7.0",
"python-magic==0.4.15",
"xlrd==1.2.0",
"msoffcrypto-tool==4.6.4",
'python-magic-bin==0.4.14;platform_system=="Windows"',
"pyxlsb==1.0.6",
],
setup_requires=["pytest-runner"],
tests_require=["pytest", "pytest-mock"],
zip_safe=True,
)