-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
39 lines (35 loc) · 1.18 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
37
38
39
from pathlib import Path
from setuptools import setup, find_packages
long_description = Path("README.rst").read_text("utf-8")
try:
from intercode import __author__, __email__
except ImportError: # Deps not yet installed
__author__ = __email__ = ""
setup(
name="intercode",
version="0.0.7",
description="Interpretable Autoencoder",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/theislab/intercode",
author=__author__,
author_email=__email__,
license="BSD-3-Clause",
packages=find_packages(),
zip_safe=False,
install_requires=[
l.strip() for l in Path("requirements.txt").read_text("utf-8").splitlines()
],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Environment :: Console",
"Framework :: Jupyter",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
],
)