-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
37 lines (33 loc) · 1.21 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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Written by Lucas Sinclair.
MIT Licensed.
Contact at www.sinclair.bio
"""
# Imports #
from setuptools import setup, find_namespace_packages
from os import path
# Load the contents of the README file #
this_dir = path.abspath(path.dirname(__file__))
readme_path = path.join(this_dir, 'README.md')
with open(readme_path, encoding='utf-8') as handle: readme = handle.read()
# Call setup #
setup(
name = 'plumbing',
version = '2.11.2',
description = 'Helps with plumbing-type programing in python.',
license = 'MIT',
url = 'http://github.com/xapple/plumbing/',
author = 'Lucas Sinclair',
author_email = '[email protected]',
packages = find_namespace_packages(exclude=['testing']),
install_requires = ['autopaths>=1.5.0', 'pandas', 'retry', 'requests'],
extras_require = {'pretty_now': ['tzlocal'],
'graphs': ['matplotlib', 'numpy'],
'check_module': ['packaging']},
python_requires = ">=3.8",
long_description = readme,
long_description_content_type = 'text/markdown',
include_package_data = True,
)