-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
27 lines (26 loc) · 847 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
from setuptools import setup
setup(
name="synthea-rdf",
version="0.2",
description="Semantic web representation for the Synthea.",
author="Dae-young Kim, James Clavin",
author_email="[email protected], [email protected]",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
project_urls={"Source Code": "https://github.com/leroykim/synthea-rdf"},
license="GPLv3",
packages=["synthea_rdf", "dua", "trustscore", "abstract"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
install_requires=[
"rdflib",
"pandas",
"alive_progress",
"panel",
"lorem_text",
"pyyaml",
],
)