File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,6 +13,9 @@ exclude_lines =
1313
1414ignore_errors = True
1515
16+ include =
17+ */carepoint/*
18+
1619omit =
1720 */virtualenv/*
1821 */tests/*
Original file line number Diff line number Diff line change 22 apt :
33 packages :
44 - expect-dev # provides unbuffer utility
5+ - unixodbc-dev
56
67language : python
78
Original file line number Diff line number Diff line change 77from tests import Tests
88
99
10- PACKAGE_NAME = 'carepoint'
11- VERSION = '0.1.2'
10+ setup_vals = {
11+ 'name' : 'carepoint' ,
12+ 'version' : '0.1.3' ,
13+ 'author' : 'LasLabs Inc.' ,
14+ 'author_email' : 'support@laslabs.com' ,
15+ 'description' : 'This library will allow you to interact with CarePoint'
16+ 'using Python.' ,
17+ 'url' : 'https://github.com/laslabs/python-carepoint' ,
18+ 'license' : 'MIT' ,
19+ 'classifiers' : [
20+ 'Development Status :: 4 - Beta' ,
21+ 'Environment :: Console' ,
22+ 'Intended Audience :: Developers' ,
23+ 'Intended Audience :: Healthcare Industry' ,
24+ 'License :: OSI Approved :: MIT License' ,
25+ 'Operating System :: POSIX :: Linux' ,
26+ 'Programming Language :: Python' ,
27+ 'Topic :: Software Development :: Libraries :: Python Modules' ,
28+ ],
29+ }
1230
1331
1432setup (
15- name = PACKAGE_NAME ,
16- version = VERSION ,
17- packages = find_packages (exclude = ('tests' , )),
33+ packages = find_packages (exclude = ('tests' )),
1834 cmdclass = {'test' : Tests },
1935 tests_require = [
20- 'pysqlite' ,
2136 'sqlalchemy' ,
2237 'xmlrunner' ,
2338 'mock' ,
2439 ],
2540 install_requires = [
26- # 'pyodbc',
41+ 'pyodbc' ,
2742 'pysmb' ,
28- ]
43+ ],
44+ ** setup_vals
2945)
Original file line number Diff line number Diff line change 1- SQLAlchemy>=1.1.0b3
2- fake-factory>=0.5.3
3- funcsigs>=0.4
4- mixer>=5.4.1
5- mock>=1.3.0
6- pbr>=1.8.1
7- pysqlite>=2.8.1
1+ SQLAlchemy>=1.1.1
2+ pyodbc>=3.0.10
3+ fake-factory>=0.7.2
4+ funcsigs>=1.0.2
5+ mixer>=5.5.7
6+ mock>=2.0.0
87six>=1.10.0
98wsgiref>=0.1.2
109xmlrunner>=1.7.7
1110pysmb>=1.1.18
1211enum34>=1.1.6
12+ pysqlite>=2.8.1
You can’t perform that action at this time.
0 commit comments