-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 732 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 732 Bytes
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
# -*- encoding: utf8 -*-
import glob
import io
import re
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import find_packages
from setuptools import setup
def read(*names, **kwargs):
return io.open(
join(dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8")
).read()
setup(
name="onepagecrm",
version="0.2.0",
license="MIT",
description="Connect and interface with the OnePageCRM REST API",
author="Ruairi Fahy",
author_email="devteam@onepagecrm.com",
url="https://github.com/onepagecrm/python-client",
packages=["onepagecrm"],
install_requires=[
"requests",
]
)