-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
29 lines (24 loc) · 920 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from os.path import abspath, dirname, join
this_dir = abspath(dirname(__file__))
with open(join(this_dir, "LICENSE")) as f:
license = f.read()
with open(join(this_dir, "README.md"), encoding="utf-8") as file:
long_description = file.read()
with open(join(this_dir, "requirements.txt")) as f:
requirements = f.read().split("\n")
setup(
name="blackbirds",
version="1.3",
description="Black-Box Inference foR Differentiable Simulators.",
url="https://github.com/arnauqb/blackbirds",
long_description_content_type="text/markdown",
long_description=long_description,
author="Ayush Chopra and Joel Dyer and Arnau Quera-Bofarull",
author_email="arnauq@protonmail.com",
license="MIT License",
install_requires=requirements,
packages=find_packages(exclude=["docs"]),
include_package_data=True,
)