-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (34 loc) · 1.11 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
import os
from distutils.core import setup
def read_file(filename):
with open(os.path.join(os.path.dirname(__file__), filename)) as file:
return file.read()
setup(
name="smartools",
packages=[
"smartools",
"smartools.models",
"smartools.models.enums",
"smartools.operations",
"smartools.types",
],
version="1.3.0",
license="MIT",
description="A wrapper for the smartsheet-python-sdk that monkey-patches in new methods & functionality.",
long_description=read_file("README.md"),
long_description_content_type="text/markdown",
author="David Carli-Arnold",
author_email="[email protected]",
url="https://github.com/davocarli",
keywords=["Smartsheet", "smartsheet-python-sdk", "monkey-patch"],
install_requires=[
"smartsheet-python-sdk",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
],
)