-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (19 loc) · 707 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (19 loc) · 707 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
from setuptools import setup, find_packages
def parse_requirements(file):
required_packages = []
with open(os.path.join(os.path.dirname(__file__), file)) as req_file:
for line in req_file:
required_packages.append(line.strip())
return required_packages
setup(name='san',
version='0.32',
description="Feature ranking with self-attention networks",
url='http://github.com/skblaz/san',
author='Blaž Škrlj and Matej Petković',
author_email='blaz.skrlj@ijs.si',
license='MIT',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
install_requires=parse_requirements('requirements.txt'))