-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
59 lines (49 loc) · 2.14 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
43
44
45
46
47
48
49
50
51
52
53
54
55
# -*- coding: utf-8 -*-
# marketholidays.py
# -----------
# A fast, efficient Python library for generating country, province and state
# specific sets of marketholidays on the fly. It aims to make determining whether a
# specific date is a holiday as fast and flexible as possible.
#
# Author: MichealOmojola <[email protected]>
# Website: https://github.com/OmoMicheal/trading_days
# License: MIT (see LICENSE file)
# Version: 0.1 (April 7, 2021)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='marketanalysis',
packages = ['marketanalysis'],
version='0.1',
author='Micheal Omojola',
description='A repository for market holidays and trading days in NYSE and NASDAQ',
download_url = 'https://github.com/OmoMicheal/marketanalysis/archive/refs/tags/0.1.tar.gz',
author_email='[email protected]',
url='https://github.com/OmoMicheal/marketanalysis',
bugtrack_url='https://github.com/OmoMicheal/marketanalysis/issues',
license='MIT License',
py_modules=['marketanalysis'],
keywords = ['trading', 'NYSE', 'NASDAQ','market holidays','trading days'],
long_description=open('README.rst', encoding='utf-8').read(),
long_description_content_type = 'text/x-rst',
install_requires=['datetime','python-dateutil','six'],
platforms='any',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3', #Specify which pyhton versions that you want to support
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Office/Business :: Scheduling',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Localization',
],
)