-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (28 loc) · 995 Bytes
/
Copy pathsetup.py
File metadata and controls
36 lines (28 loc) · 995 Bytes
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
from setuptools import setup
from setuptools import find_packages
def _requires_from_file(filename):
return open(filename).read().splitlines()
with open('README.rst') as f:
readme = f.read()
setup(
name="si4ul",
package_dir={"": "src"},
packages=find_packages("src"),
version="0.1.5",
url="https://github.com/takeuchi-lab/si4ul",
author="Takeuchi Lab",
author_email="omori.y.mllabl.nit@gmail.com",
description="selective inference for unsupervised learning",
classifiers=[
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
],
install_requires=_requires_from_file('requirements.txt'),
long_description=readme,
license="MIT License",
# py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
# include_package_data=True,
# zip_safe=False,
)