forked from rna-oop/2425-m1-geniomhe-group-6
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (28 loc) · 931 Bytes
/
setup.py
File metadata and controls
31 lines (28 loc) · 931 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
import os
import subprocess
import sys
from setuptools import setup, find_packages
with open("requirements.txt") as f:
requirements = f.read().splitlines()
with open("VERSION") as version_file:
version = version_file.read().strip()
setup(
name="RNAr",
version=version,
author="Joelle ASSY, Rayane ADAM",
description="python library to handle RNA spatial conformations",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/rna-oop/2425-m1-geniomhe-group-6",
packages=find_packages(),
install_requires=requirements,
extras_require={
"viz-2d": ["draw_rna"],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.10", # Uses match-case, requires Python 3.10+
)