-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 922 Bytes
/
setup.py
File metadata and controls
33 lines (28 loc) · 922 Bytes
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
#!/usr/bin/env python
# -*- encoding: utf-8 -*-
from glob import glob
from os.path import basename, splitext
############
# https://packaging.python.org/en/latest/guides/making-a-pypi-friendly-readme/
from pathlib import Path
from setuptools import find_packages, setup
this_directory = Path(__file__).parent
long_description = Path(this_directory / "README.md").read_text()
############
setup(
packages=find_packages(),
package_data={
"": [
"*.env",
"data/biosample_attributes",
"neo4j/queries.cypher",
]
},
include_package_data=True,
py_modules=[splitext(basename(path))[0] for path in glob("src/*.py")],
project_urls={
"Documentation": "https://socialgene.github.io",
"Changelog": "https://github.com/socialgene/sgpy/blob/main/CHANGELOG.md",
"Issue Tracker": "https://github.com/socialgene/sgpy/issues",
},
)