-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (29 loc) · 864 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
33
from setuptools import setup, find_packages
import os.path
import sys, os
import json
# HERE = pathlib.Path(__file__).parent
# README = (HERE / "README.md").read_text()
with open('DESCRIPTION.md') as f:
long_description = f.read()
setup(
name="apptweak",
version="2.0.0",
description="access the apptweak-io API in an easier way",
long_description=long_description,
long_description_content_type='text/markdown', # This is important!
url="https://github.com/apptweak/apptweak-api-python-library",
author="apptweak",
author_email="[email protected]",
license="MIT",
classifiers=[
"Programming Language :: Python :: 3.7",
],
packages=find_packages(exclude=['tests']),
include_package_data=True,
entry_points={
"console_scripts": [
"",
]
},
zip_safe=False)