-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.03 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.03 KB
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
40
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
install_requires = ['requests>=2.20.0,<3', ]
tests_require = [
'responses==0.10.1',
'coverage==7.3',
'pytest==5.4.3',
'python-coveralls==2.9.1',
'pytest-flake8==1.0.6',
'flake8==3.8.2',
'wheel==0.38.1',
]
setuptools.setup(
name='SalesforcePy',
version='2.2.0',
description='An absurdly simple package for making Salesforce Rest API requests',
url='https://github.com/forcedotcom/SalesforcePy',
author='Aaron Caffrey',
author_email='acaffrey@salesforce.com',
license='BSD',
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
],
packages=setuptools.find_packages(),
zip_safe=False,
install_requires=install_requires,
setup_requires=['pytest-runner'],
tests_require=tests_require
)