forked from videntity/provider-data-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (53 loc) · 2.48 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
50
51
52
53
54
55
56
import os
from setuptools import setup, find_packages
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
README = readme.read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(name="pdt",
version="0.8.4",
description="Provider Data Tools",
long_description="""A collection of scripts and APIs for working with"""
"""health care provider data and beyond. Many tools"""
"""are generic utilities.""",
author="Alan Viars",
author_email="[email protected]",
url="https://github.com/TransparentHealth/provider-data-tools",
download_url="https://github.com/TransparentHealth/provider-data-tools/"
"tarball/master",
install_requires=['validate_email', 'beautifulsoup4', 'luhn', 'jdt',
'jsonschema', 'six', 'ndjson'],
packages=['pdt', 'pdt.pjson', 'tests', 'pdt.fhir_json_schema'],
include_package_data=True,
package_data={'tests': ['fifty_thousand.csv', 'first10.csv'],
'pjson': ['taxonomy-license-crosswalk.csv'],
'fhir_json_schema': ['Practitioner.json', 'Organization.json']},
data_files = [('bin', ['pdt/nucc_taxonomy_220.csv',])],
scripts=['pdt/build-cdn.sh',
'pdt/chop_nppes_public.py',
'pdt/combine_nppes_pecos_pract_fhir.py',
'pdt/combine_nppes_pecos_org_fhir.py',
'pdt/create_combined_indexes.py',
'pdt/create_pecos_compiled_indexes.py',
'pdt/create_pecos_indexes.py',
'pdt/create_provider_indexes.py',
'pdt/csv2mlvs.py',
'pdt/csv2pjson_public.py',
'pdt/csv2fhir_public.py',
'pdt/json_schema_check.py',
'pdt/json_schema_check_fhir.py',
'pdt/loadnppes.py',
'pdt/load_nppes_and_pecos.py',
'pdt/load_pecos.py',
'pdt/makepecosdocs.py',
'pdt/pjson/validate_pjson',
'pdt/pjson/validate_pjson_affiliations',
'pdt/pjson/validate_pjson_dir',
'pdt/pull_pecos.py',
'pdt/pull_new_files_ready.py',
'pdt/vnpi.py',
'pdt/split_practitioners_and_organizations.py',
'pdt/build_csv_with_taxonomy.py',
'pdt/get_npi_set_from_csv_column.py',
]
)