-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
36 lines (31 loc) · 1.1 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
from setuptools import setup, find_packages
from os import path
import asoid
curr_dir = path.abspath(path.dirname(__file__))
with open("README.md", "r") as fh:
long_description = fh.read()
def get_requirements():
with open(path.join(curr_dir, "requirements.txt"), encoding="utf-8") as f:
return f.read().strip().split("\n")
setup(
name='asoid',
version= asoid.__version__,
description='ASOiD: An active learning approach to behavioral classification',
long_description=long_description,
long_description_content_type="text/markdown",
project_urls={
"Documentation": "https://github.com/YttriLab/A-SOID",
"Bug Tracker": "https://github.com/YttriLab/A-SOID/issues"
},
url="https://github.com/YttriLab/A-SOID",
author=['Jens F. Schweihoff','Alexander Hsu'],
entry_points={
"console_scripts": [
"asoid =asoid.__main__:main"
]
},
packages=find_packages(), # same as name
include_package_data=True,
install_requires=get_requirements(),
python_requires=">=3.7",
)