-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (33 loc) · 1.19 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
from setuptools import setup, find_packages
# Get requirements from text file
with open('requirements.txt') as f:
requirements = f.read().splitlines()
# Use README.md as the long description
with open('README.md', encoding='utf-8') as f:
long_description = f.read()
setup(
name="ukat",
version="0.7.3",
description="UKRIN Kidney Analysis Toolbox",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/UKRIN-MAPS/ukat",
license="GPL-3.0",
python_requires='>=3.8, <4',
packages=find_packages(),
install_requires=requirements,
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Environment :: Console',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
],
)