forked from lz356/FDD_RF_Repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (37 loc) · 974 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
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
import setuptools
from codecs import open
import os
here = os.path.abspath(os.path.dirname(__file__))
metadata = {}
with open(os.path.join(here, '__version__.py'), 'r', encoding='utf-8') as f:
exec(f.read(), metadata)
with open('README.md', 'r', 'utf-8') as f:
readme = f.read()
setuptools.setup(
name=metadata['__name__'],
version=metadata['__version__'],
author=metadata['__author__'],
author_email=metadata['__author_email__'],
description=metadata['__description__'],
long_description=readme,
long_description_content_type='text/markdown',
url=metadata['__url__'],
packages=setuptools.find_packages(),
install_requires=[
'numpy',
'pandas',
'sklearn',
],
extras_require={
'dev': [
'pytest',
'autopep8',
'codecov',
'flake8',
'coverage',
'pdoc3',
'awscli'
]
}
)