-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
50 lines (35 loc) · 1.11 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python3
import os
import re
from glob import glob
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = "0.1.0"
setup(
name = "happydomain",
version = version,
description = "Finally a simple interface for domain names.",
long_description = open('README.md').read(),
author = "happyDomain's team",
author_email = '[email protected]',
url = 'https://git.happydomain.org/python-sdk',
license = 'CECILL-2.1',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Topic :: Internet :: Name Service (DNS)',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: CEA CNRS Inria Logiciel Libre License, version 2.1 (CeCILL-2.1)',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
],
keywords = 'dns ns happydomain domain domainname',
provides = ['happydomain'],
install_requires=['requests'],
packages=[
'happydomain',
],
)