forked from ngfgrant/tides
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (40 loc) · 1.36 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
# !/usr/bin/env python3
# -*- coding: utf-8 -*-
from tides import __version__
from setuptools import setup, find_packages
with open("README.md") as readme_file:
readme = readme_file.read()
with open("CHANGELOG.md") as history_file:
history = history_file.read()
setup(
name='tides',
version=__version__,
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
package_dir={
"tides": "tides"
},
description='A wrapper for the tides API',
long_description=readme,
long_description_content_type="text/markdown",
author='Niall Grant',
license='Apache2',
author_email='ngfgrant@gmail.com',
url='https://github.com/ngfgrant/tides',
keywords=['tides', 'api-wrapper'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Software Development :: Libraries :: Python Modules'
],
python_requires='>=3',
)