-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
35 lines (29 loc) · 1.03 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
# -*- coding: utf-8 -*-
# Copyright FMR LLC <[email protected]>
# SPDX-License-Identifier: GNU GPLv3
import os
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as fh:
required = fh.read().splitlines()
with open(os.path.join('feature', '_version.py')) as fp:
exec(fp.read())
setuptools.setup(
name="selective",
description="feature selection library",
long_description=long_description,
long_description_content_type="text/markdown",
version=__version__,
author="FMR LLC",
url="https://github.com/fidelity/selective",
packages=setuptools.find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
classifiers=[
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.7",
"Operating System :: OS Independent",
],
project_urls={"Source": "https://github.com/fidelity/selective"},
install_requires=required,
python_requires=">=3.7"
)