-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (28 loc) · 938 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import find_namespace_packages, setup
with open("requirements.txt", "r") as file:
requirements = [line.strip() for line in file]
with open("README.md", "r") as file:
long_description = file.read()
with open("VERSION", "r") as file:
version = file.read().strip()
setup(
name="neural-diffusion-processes",
version=version,
author="Emile Mathieu, Vincent Dutordoir",
long_description=long_description,
long_description_content_type="text/markdown",
description="",
# license="Apache License 2.0",
keywords="",
#install_requires=requirements,
packages=find_namespace_packages(
include=["neural_diffusion_processes"]
),
classifiers=[
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
)