forked from SalomonisLab/altanalyze3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
30 lines (26 loc) · 772 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
#! /usr/bin/env python3
import os
from setuptools import setup, find_packages
def get_description():
README = os.path.join(os.path.abspath(os.path.dirname(__file__)), "README.md")
with open(README, "r") as f:
return f.read()
setup(
name="altanalyze3",
description="AltAnalyze3",
long_description=get_description(),
long_description_content_type="text/markdown",
version="0.0.1",
url="https://github.com/SalomonisLab/altanalyze3.git",
download_url="https://github.com/SalomonisLab/altanalyze3.git",
author="",
author_email="",
license="Apache-2.0",
include_package_data=True,
packages=find_packages(
exclude=["doc", "test"]
),
install_requires=[],
zip_safe=False,
classifiers=[]
)