forked from AutoFlowResearch/BFAIR
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
39 lines (33 loc) · 896 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
36
37
38
39
# -*- coding: utf-8 -*-
import re
from setuptools import find_packages, setup
with open("README.md", "r") as doc:
long_description = doc.read()
version = re.search(
r'^__version__\s*=\s*"(.*)"',
open("BFAIR/__init__.py").read(),
re.M,
).group(1)
setup(
name="BFAIR",
version=version,
author="AutoFlow",
author_email="TBD",
description=(
"General Repository for Omics Data Handling tools"
),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AutoFlowResearch/BFAIR",
packages=find_packages(),
license="MIT",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
# install_requires=[
# ],
# dependency_links=
include_package_data=True,
)