forked from USEPA/FDTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 888 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
28
import re
from setuptools import setup
version = re.search(
'^__version__\s*=\s*"(.*)"',
open('fdtool/fdtool.py', encoding="utf-8").read(),
re.M
).group(1)
with open("README.md", "rb") as f:
long_descr = f.read().decode("utf-8")
setup(name='fdtool',
version= version,
packages = ["fdtool"],
entry_points = {
"console_scripts": ['fdtool = fdtool.fdtool:main']
},
description='Identify functional dependencies, equivalences, and candidate keys in tabular data',
long_description = long_descr,
long_description_content_type='text/markdown',
url='https://github.com/USEPA/FDTool/',
author='Matt Buranosky',
include_package_data=True,
package_data={'fdtool':['modules/*.py']},
author_email='buranosky.matthew@epa.gov',
license='CC0',
zip_safe=False)