-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
38 lines (31 loc) · 1007 Bytes
/
setup.py
File metadata and controls
38 lines (31 loc) · 1007 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
34
35
36
37
38
from setuptools import setup, find_packages
import os.path
_CURRENT_DIR = os.path.dirname(os.path.abspath(__file__))
def _parse_requirements(path):
with open(os.path.join(_CURRENT_DIR, path)) as f:
return [
line.rstrip()
for line in f
if not (line.isspace() or line.startswith(("#", "-i")))
]
_INSTALL_REQUIREMENTS = _parse_requirements(
os.path.join(_CURRENT_DIR, "requirements.txt")
)
setup(
install_requires=_INSTALL_REQUIREMENTS,
name="effCTR",
version="0.1.3",
url="https://github.com/ksolarski/effCTR",
author="Kacper Solarski",
author_email="pchla10@gmail.com",
packages=find_packages(),
python_requires=">=3.9",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)