Skip to content

Commit 1ef78c1

Browse files
committed
Preparation for PyPI, v1.0.2
1 parent f33ab92 commit 1ef78c1

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

setup.py

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,24 @@
11
from setuptools import setup
22

3+
with open("README.md", "r") as ld:
4+
long_description = ld.read()
5+
36
setup(
47
name='python-fmrest',
5-
version='1.0.1',
8+
version='1.0.2',
69
author='David Hamann',
710
author_email='[email protected]',
11+
description='python-fmrest is a wrapper around the FileMaker Data API.',
12+
long_description=long_description,
13+
long_description_content_type='text/markdown',
14+
url='https://github.com/davidhamann/python-fmrest',
815
packages=['fmrest'],
916
include_package_data=True,
10-
install_requires=['requests']
17+
install_requires=['requests'],
18+
classifiers=(
19+
'Programming Language :: Python',
20+
'Programming Language :: Python :: 3.6',
21+
'License :: OSI Approved :: MIT License',
22+
'Operating System :: OS Independent'
23+
)
1124
)

0 commit comments

Comments
 (0)