-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (23 loc) · 815 Bytes
/
setup.py
File metadata and controls
44 lines (23 loc) · 815 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
37
38
39
40
41
42
43
44
from setuptools import find_packages, setup
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
with open('requirements.txt') as inn:
requirements = inn.read().splitlines()
setup(
name = 'ExtraTree',
version = '0.0.3',
description = 'Extrapolated Tree',
long_description = long_description,
long_description_content_type = "text/markdown",
url = 'https://github.com/Karlmyh/ExtraTree',
author = "Yuheng Ma",
author_email = "yma@ruc.edu.cn",
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License"
],
packages = find_packages(),
python_requires = '>=3',
install_requires = requirements,
)