mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
MNT: Add setuptools.setup(project_urls=)
This commit is contained in:
7
setup.py
7
setup.py
@@ -12,7 +12,12 @@ if __name__ == '__main__':
|
|||||||
name='Backtesting',
|
name='Backtesting',
|
||||||
description="Backtest trading strategies in Python",
|
description="Backtest trading strategies in Python",
|
||||||
license='AGPL-3.0',
|
license='AGPL-3.0',
|
||||||
url="https://github.com/kernc/backtesting.py",
|
url='https://kernc.github.io/backtesting.py/',
|
||||||
|
project_urls={
|
||||||
|
'Documentation': 'https://kernc.github.io/backtesting.py/doc/backtesting/',
|
||||||
|
'Source': 'https://github.com/kernc/backtesting.py/',
|
||||||
|
'Tracker': 'https://github.com/kernc/backtesting.py/issues',
|
||||||
|
},
|
||||||
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
|
long_description=open(os.path.join(os.path.dirname(__file__), 'README.md')).read(),
|
||||||
long_description_content_type='text/markdown',
|
long_description_content_type='text/markdown',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
|||||||
Reference in New Issue
Block a user