-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (38 loc) · 1.28 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
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import setuptools
import textwrap
from pip.req import parse_requirements
version = "1.0"
def get_requirements():
install_reqs = parse_requirements('requirements.txt', session='boosting')
return [str(ir.req) for ir in install_reqs]
if __name__ == "__main__":
setuptools.setup(
name="boosting",
version=version,
description="Implementation of boosting algorithms",
author="Sergey Romanov",
author_email="xxsmotur@gmail.com",
long_description=textwrap.dedent("""\
TODO
"""),
packages=[
"boosting",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: MIT",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development",
],
python_requires=">=3.0",
install_requires=get_requirements()
)