-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
40 lines (37 loc) · 1.24 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
VERSION='0.4'
setup(
name='namesync',
version=VERSION,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
description='Sync DNS records stored in a flat file format to your DNS provider.',
author='Mark Sandstrom',
author_email='mark@deliciouslynerdy.com',
url='https://github.com/dnerdy/namesync',
download_url='https://github.com/dnerdy/namesync/archive/v{}.tar.gz'.format(VERSION),
setup_requires=[
'setuptools>=0.8',
],
install_requires=[
],
entry_points={
'console_scripts': [
'namesync = namesync.main:main',
],
},
test_suite='nose.collector',
test_loader='unittest:TestLoader',
keywords=['dns', 'sync', 'syncing', 'cloudflare'],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: Name Service (DNS)",
],
)