-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathsetup.py
35 lines (30 loc) · 944 Bytes
/
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
import setuptools
with open("README.md", "r") as f:
long_description = f.read()
def get_requirements():
with open("requirements.txt") as f:
return f.read().splitlines()
setuptools.setup(
name="deepethogram",
version="0.2.0",
author="Jim Bohnslav",
author_email="jbohnslav@gmail.com",
description="Temporal action detection for biology",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
entry_points={"console_scripts": ["deepethogram = deepethogram.gui.main:entry"]},
python_requires=">=3.7,<3.8",
install_requires=get_requirements(),
options={
"ruff": {
"target-version": "py37",
},
},
setup_requires=["setuptools"],
)