forked from locaweb/python-servicenow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·19 lines (17 loc) · 714 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·19 lines (17 loc) · 714 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python
from setuptools import setup
setup(
author = 'Juliano Martinez',
author_email = 'juliano.martinez@locaweb.com.br',
name = 'servicenow',
version = '2.1.0',
url = 'https://github.com/locaweb/python-servicenow',
description = 'Python Library to interact with and manage the ServiceNow database',
install_requires = ['requests','redis','SOAPpy'],
long_description = open('README.md').read(),
maintainer = 'Francisco Freire',
maintainer_email = 'francisco.freire@locaweb.com.br',
package_dir = {'servicenow': 'src/servicenow', 'servicenow.drivers': 'src/servicenow/drivers'},
packages = ['servicenow', 'servicenow.drivers'],
license = 'Apache',
)