-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
28 lines (26 loc) · 1.16 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
from setuptools import find_packages, setup
from techa import __version__, __author__, __package__, __license__, __dependencies__
setup(
name=__package__,
version=f'v{__version__}',
requires=__dependencies__,
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
package_dir={__package__: __package__},
url= f'https://github.com/havocesp/{__package__}',
license=__license__,
author=__author__,
author_email='[email protected]',
description=__package__.upper() + ': Technical Analysis Library',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: Open source library with some useful routines.',
f'License :: OSI Approved :: {__license__} License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
], install_requires=__dependencies__ + ['finta']
)