File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
3
+ with open ("README.md" , "r" ) as ld :
4
+ long_description = ld .read ()
5
+
3
6
setup (
4
7
name = 'python-fmrest' ,
5
- version = '1.0.1 ' ,
8
+ version = '1.0.2 ' ,
6
9
author = 'David Hamann' ,
7
10
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' ,
8
15
packages = ['fmrest' ],
9
16
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
+ )
11
24
)
You can’t perform that action at this time.
0 commit comments