-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
29 lines (26 loc) · 850 Bytes
/
setup.py
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
from setuptools import setup, find_packages
setup_params = dict(
name='epp-python-client',
version='0.0.19',
author='Veselin Penev',
author_email='penev.veselin@gmail.com',
packages=find_packages(where='src'),
package_dir={'': 'src'},
scripts=['bin/epp-gate', ],
description='Python-based Extensible Provisioning Protocol (EPP) client',
long_description=(
"The library provides an interface to the Extensible Provisioning "
"Protocol (EPP), which is being used for communication between domain "
"name registries and domain name registrars."
),
url='https://github.com/datahaven-net/epp-python-client',
install_requires=[
"beautifulsoup4",
"lxml",
"pika",
],
)
def run_setup():
setup(**setup_params)
if __name__ == '__main__':
run_setup()