-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (49 loc) · 1.32 KB
/
setup.py
File metadata and controls
52 lines (49 loc) · 1.32 KB
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
import setuptools
import glob
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
requirements = [
"atomicwrites==1.4.1",
"attrs==25.1.0",
"colorama==0.4.6",
"iniconfig==2.0.0",
"nmrglue==0.11",
"numpy==2.2.3",
"packaging==24.2",
"pandas==2.2.3",
"pluggy==1.5.0",
"py==1.11.0",
"pyparsing==3.2.1",
"pytest==8.3.4",
"python-dateutil==2.9.0.post0",
"pytz==2025.1",
"scipy==1.15.2",
"six==1.17.0",
"toml==0.10.2",
"rdkit==2024.9.5",
"requests==2.32.3",
"patool==3.1.3",
"Unidecode>=1.3.7",
]
setuptools.setup(
name="apvalidation",
version="0.5.81",
author="liningtonlabs",
author_email="liningtonlabstest@gmail.com",
description="Testing installation of Package",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/liningtonlab/apvalidation",
license="MIT",
package_data={
"apvalidation": [
"npmrd_data_exchange/standardization_files/*.json",
"npmrd_data_exchange/validation/validator.py",
"npmrd_data_exchange/standardization/standardizer.py",
"extract/*.py",
],
},
include_package_data=True,
packages=["apvalidation"],
install_requires=requirements,
)