-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 835 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
import setuptools
import os
with open('README.rst', 'r') as fh:
long_description = fh.read()
version_file = open(os.path.join('./', 'VERSION'))
version = version_file.read().strip()
setuptools.setup(
name='ecal',
version=version,
author='Brett Elliot',
author_email='[email protected]',
description='A package for getting a US equity earnings announcement calendar.',
long_description=long_description,
url='https://github.com/brettelliot/ecal',
packages=['ecal'],
install_requires=[
'pandas == 0.22.0',
'requests >= 2.19.1',
'urllib3 >= 1.23'
],
license='MIT',
test_suite='tests',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
],
)